AirShopping 19.2

Attachments:

Introduction

This service returns pricing offers for each flight (flight combinations) for the requested O@D, dates and requested cabin

AirShopping Webservice

Limitations (This list is not exhaustive):

  • Itinerary with only children passengers and with only infant passengers will not be priced
  • Non-flight (hotel) availability is not supported
  • Only One way and Round trip routes can be requested 
  • Maximum 2 Origin and Destination can be requested
  • Calendar offers are not supported

This web service is called with the following inputs:

  1. Pricing currency parameters
  2. Origin and Destination (O&D)
  3. Cabin preferences
  4. Passenger details (Quantity and passenger type)
  5. Pricing Method Preference (Lowest available or Fare Family). Note: For Fare Family pricing mode add to the request "FareFamilyPricing" section and exclude section "PricingMethodCriteria".

The output data this service returns include:

  1. Response ID
  2. List of airline offers where each offer contains

_Priced passengers information

_Offer time limits

_Total offer price for all passengers

_Price per passenger type (Base amount and applicable taxes). 

_Fare component details such as Fare basis, Record Booking Designator (RBD), etc. 

_References to applicable flights

3. Checked baggage information per passenger type

4. Flight details such as Flight Number, Flight schedule information, Equipment, Cabin, etc.

Access 

In order to access API, you will need to pass the following two headers for each call.

  • Authentication and authorization stand on the protocol layer using basic HTTP authentication. Given username and password with separator “:” MUST be base64-encoded and passed as HTTP header “Authorization”. This header is mandatory for all requests. For example, if "TestLogin" set as the username and "TestPass" set as the password, then the field's value is base64-encoding of TestLogin: TestPass, or QWxhZGRpbjpPcGVuU2VzYW1l. Then the Authorization header will appear as Authorization: Basic QWxhZGRpbjpPcGVuU2VzYW1l

  • Header 'Content-Type: text/xml' 
  • Message structure: <soapenv:Envelope><soapenv:Body> Message... </soapenv:Body></soapenv:Envelope>

AirShoppingRQ structure

AirShoppingRQ
curl --location --request POST 'https://ndc-sandbox.solringair.net/ws' \
--header 'Content-Type: text/xml' \
--header 'Authorization: Basic fsdfsdgsdg=' \
--data-raw '<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
	<soapenv:Body>
		<IATA_AirShoppingRQ xmlns="http://www.iata.org/IATA/2015/00/2019.2/IATA_AirShoppingRQ">
			<AugmentationPoint>
				<FareFamilyPricing>
					<SimpleCombinations>true</SimpleCombinations>
				</FareFamilyPricing>
				<AvailabilityParameters>
					<ForwardSearch>true</ForwardSearch> <!--Not implemented yet! -->
				</AvailabilityParameters>	
            </AugmentationPoint>		
			<MessageDoc>
				<RefVersionNumber>19.2</RefVersionNumber>
			</MessageDoc>
			<Party>
				<Sender>
					<TravelAgency>
						<AgencyID>TA123</AgencyID>
						<Name>TravelAgent</Name>
						<PseudoCityID>IEVPS28ND</PseudoCityID>
					</TravelAgency>
				</Sender>
			</Party>
			<Request>
				<FlightCriteria>
					<OriginDestCriteria>
						<OriginDestID>Departure</OriginDestID>
						<OriginDepCriteria>
							<Date>2021-07-17</Date>
							<IATA_LocationCode>LWO</IATA_LocationCode>
						</OriginDepCriteria>
						<DestArrivalCriteria>
							<IATA_LocationCode>WAW</IATA_LocationCode>
						</DestArrivalCriteria>
					</OriginDestCriteria>
					<OriginDestCriteria>
						<OriginDestID>Arrival</OriginDestID>
						<OriginDepCriteria>
							<Date>2021-07-27</Date>
							<IATA_LocationCode>WAW</IATA_LocationCode>
						</OriginDepCriteria>
						<DestArrivalCriteria>
							<IATA_LocationCode>LWO</IATA_LocationCode>
						</DestArrivalCriteria>
					</OriginDestCriteria>
				</FlightCriteria>
				<Paxs>
					<Pax>
						<PaxId>PAX0</PaxId>
						<PTC>ADT</PTC>
					</Pax>
					<Pax>
						<PaxId>PAX1</PaxId>
						<PTC>ADT</PTC>
					</Pax>
					<Pax>
						<PaxId>PAX2</PaxId>
						<PTC>CHD</PTC>
					</Pax>
					<Pax>
						<PaxId>PAX3</PaxId>
						<PTC>INF</PTC>
					</Pax>
				</Paxs>
				<ResponseParameters>
					<CurParameter>
						<RequestedCurCode>UAH</RequestedCurCode>
					</CurParameter>
					<LangUsage>
						<LangCode>EN</LangCode>
					</LangUsage>
				</ResponseParameters>
				<ShoppingCriteria>
					<BaggagePricingCriteria>
						<BaggageOptionCode>Checked</BaggageOptionCode>
					</BaggagePricingCriteria>
					<CabinTypeCriteria>
						<CabinTypeCode>3</CabinTypeCode>
					</CabinTypeCriteria>
					<PricingMethodCriteria>
						<BestPricingOptionText>Y</BestPricingOptionText>
					</PricingMethodCriteria>
					<PromotionCriteria>
						<PromotionID>291031</PromotionID>
					</PromotionCriteria>
				</ShoppingCriteria>
			</Request>
		</IATA_AirShoppingRQ>
	</soapenv:Body>
</soapenv:Envelope>'

AirShoppingRQ fields description

 Click here to expand...

M = Mandatory; O = Optional; C = Conditional

Field name

Description

M/O/C

Example

IATA_AirShoppingRQ

The AirShopping transaction set supports both demanding and flexible shopping experiences for anonymous or personalized shopping.

The combination of functionally-rich attribute and affinity shopping support date range or specific month (calendar) shopping as an example.

The response returns offers which may include branded offers or itinerary-priced offers with or without ancillary services. It also returns applicable rules for the integrated fares as well as for each service.

The message also returns multi-media content at message level as well as media references at the individual offer level.

M

↳ AugmentationPointImplementer-Augmented Structure.O
   ↳ FareFamilyPricingFare Family combinationO
      ↳ SimpleCombinations

When TRUE, only homogeneous Fare Family offers will be returned. Examples: Lite + Lite, Standard + Standard

M<SimpleCombinations>true</SimpleCombinations>
   ↳ AvailabilityParametersAvailability parametersO

      ↳ ForwardSearch

Not implemented yet!

When TRUE the alternative dates will be requested. Used for low-frequency flights search. The search range is 30 days forward from the requested date.

M<ForwardSearch>true</ForwardSearch>

↳ MessageDoc

NDC Message Document information.M


   ↳ RefVersionNumberService Version.M

<RefVersionNumber>19.2</RefVersionNumber>

↳ Party

NDC Message/ Transaction Party(s) information. Note that information about parties is intended for business use, it is not intended for transaction authentication and routing of the message.

M


   ↳ Sender

Information related to the party sending this message.

M


      ↳ TravelAgency

SELLER: Travel Agency

M


         ↳ AgencyID

Unique Agency Seller ID. Example: TA123

M

<AgencyID>TA123</AgencyID>

         ↳ Name

Agency name. Example: Carson Travel

M

<Name>TravelAgent</Name>

         ↳ PseudoCityID

Travel Agent's Office ID.

M

<PseudoCityID>IEVPS28ND</PseudoCityID>
↳ RequestAirShoppingRQ payload information.M
   ↳ FlightCriteriaChoice of Affinity, Origin Destination, or Journey flight information for this shopping request.M
      ↳ OriginDestCriteriaThe Origin and Destination airport/city pair which confines a passenger journey or an aircraft flight.C
         ↳ DestArrivalCriteriaA Customer's requested Destination arrival time and location.M
            ↳ IATA_LocationCodeIATA defined code identifying a city or station.M<IATA_LocationCode>ODS</IATA_LocationCode>
         ↳ OriginDepCriteriaA Customer's requested Origin departure time and location.M
            ↳ DateThe customer's requested departure date. Format YYYY-MM-DDM<Date>2021-09-30</Date>
            ↳ IATA_LocationCodeIATA defined code identifying a city or station.M
         ↳ OriginDestIDUniquely identifies an Origin Destination within the context of one message.
<OriginDestID>Departure</OriginDestID>
   ↳ PaxsPassenger and Passenger Group information.M
      ↳ PaxAny person except members of the crew carried or to be carried with the consent of the carrier, on board of any transport vehicle such as aircraft, train, bus, ship. Holds the attributes specific to one booking, from shopping to fulfilment.M
         ↳ PaxIDUniquely identifies a Passenger within the context of one message.M<PaxID>PAX2</PaxID>
         ↳ PTC

Type code applying to the Passenger which typically drives pricing

Supported values: ADT / CHD / INF / YTH / YCD / STU / SEA

M<PTC>ADT</PTC>
   ↳ ResponseParametersInformation related to how shopping results should be returned in the response.M
      ↳ CurParameterRequested search processing and results currency information.M
         ↳ RequestedCurCodeCurrency Code as per ISO 4217.M<RequestedCurCode>USD</RequestedCurCode>
      ↳ LangUsageLanguage Code representation.O
         ↳ LangCodeLanguage Code representation. Supports ISO 639-1 (two alpha characters) neutral language encoding indicated by a name such as 'en' for English.M<LangCode>DE</LangCode>
   ↳ ShoppingCriteriaFurther qualifies the flight request by influencing which results are returned in the shopping response, including preferred or required criteria.O
      ↳ BaggagePricingCriteriaBaggage pricing specific filter criteria for shopping requests, including baggage type, charges, and settlement information.O
         ↳ BaggageOptionCode

Specifies the type of baggage.

Supported values: Checked

O<BaggageOptionCode>Checked</BaggageOptionCode>
      ↳ CabinTypeCriteriaType of compartment of an aircraft, offering specific services.O
         ↳ CabinTypeCode

Cabin Type Code as defined by PADIS codeset 9873.

Supported codes:

  • 2 - Business Class Category
  • 3 - Economy/coach class categories
  • 4 - Economy/coach premium
O<CabinTypeCode>3</CabinTypeCode>
      ↳ PricingMethodCriteriaContains information to identify how the reservation was re-priced to obtain best-published fareO
         ↳ BestPricingOptionText

Best Available Fare Pricing Method. Examples: Y (BEST FARE IN SAME CABIN CLASS)

Note: In case the structure is added to the query lowest available offers will be returned for flight combination. In case "Structure" is not specified in the query Fare Family pricing will be returned.

O<BestPricingOptionText>Y</BestPricingOptionText>
      ↳ PromotionCriteriaInformation related to publicizing a product, organization, or venture so as to increase sales or public awareness.O
         ↳ PromotionIDPromotion code ID or number.M<PromotionID>291031</PromotionID>

AirShoppingRS structure 

AirShoppingRS - Multi Pax, transit flight, Fare Family pricing
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
    <SOAP-ENV:Header/>
    <SOAP-ENV:Body>
        <IATA_AirShoppingRS xmlns="http://www.iata.org/IATA/2015/00/2019.2/IATA_AirShoppingRS">
            <Response>
                <DataLists>
                    <BaggageAllowanceList>
                        <BaggageAllowance>
                            <BaggageAllowanceID>CB1</BaggageAllowanceID>
                            <PieceAllowance>
                                <ApplicablePartyText>Traveler</ApplicablePartyText>
                                <PieceWeightAllowance>
                                    <MaximumWeightMeasure UnitCode="KG">10</MaximumWeightMeasure>
                                </PieceWeightAllowance>
                                <TotalQty>1</TotalQty>
                            </PieceAllowance>
                            <TypeCode>Checked</TypeCode>
                        </BaggageAllowance>
                        <BaggageAllowance>
                            <BaggageAllowanceID>CB2</BaggageAllowanceID>
                            <PieceAllowance>
                                <ApplicablePartyText>Traveler</ApplicablePartyText>
                                <PieceWeightAllowance>
                                    <MaximumWeightMeasure UnitCode="KG">10</MaximumWeightMeasure>
                                </PieceWeightAllowance>
                                <TotalQty>1</TotalQty>
                            </PieceAllowance>
                            <TypeCode>Checked</TypeCode>
                        </BaggageAllowance>
                        <BaggageAllowance>
                            <BaggageAllowanceID>CB3</BaggageAllowanceID>
                            <PieceAllowance>
                                <ApplicablePartyText>Traveler</ApplicablePartyText>
                                <PieceWeightAllowance>
                                    <MaximumWeightMeasure UnitCode="KG">23</MaximumWeightMeasure>
                                </PieceWeightAllowance>
                                <TotalQty>1</TotalQty>
                            </PieceAllowance>
                            <TypeCode>Checked</TypeCode>
                        </BaggageAllowance>
                        <BaggageAllowance>
                            <BaggageAllowanceID>CB4</BaggageAllowanceID>
                            <PieceAllowance>
                                <ApplicablePartyText>Traveler</ApplicablePartyText>
                                <PieceWeightAllowance>
                                    <MaximumWeightMeasure UnitCode="KG">23</MaximumWeightMeasure>
                                </PieceWeightAllowance>
                                <TotalQty>1</TotalQty>
                            </PieceAllowance>
                            <TypeCode>Checked</TypeCode>
                        </BaggageAllowance>
                        <BaggageAllowance>
                            <BaggageAllowanceID>CB5</BaggageAllowanceID>
                            <PieceAllowance>
                                <ApplicablePartyText>Traveler</ApplicablePartyText>
                                <PieceWeightAllowance>
                                    <MaximumWeightMeasure UnitCode="KG">23</MaximumWeightMeasure>
                                </PieceWeightAllowance>
                                <TotalQty>1</TotalQty>
                            </PieceAllowance>
                            <TypeCode>Checked</TypeCode>
                        </BaggageAllowance>
                        <BaggageAllowance>
                            <BaggageAllowanceID>CB6</BaggageAllowanceID>
                            <PieceAllowance>
                                <ApplicablePartyText>Traveler</ApplicablePartyText>
                                <PieceWeightAllowance>
                                    <MaximumWeightMeasure UnitCode="KG">23</MaximumWeightMeasure>
                                </PieceWeightAllowance>
                                <TotalQty>1</TotalQty>
                            </PieceAllowance>
                            <TypeCode>Checked</TypeCode>
                        </BaggageAllowance>
                        <BaggageAllowance>
                            <BaggageAllowanceID>CB7</BaggageAllowanceID>
                            <PieceAllowance>
                                <ApplicablePartyText>Traveler</ApplicablePartyText>
                                <PieceWeightAllowance>
                                    <MaximumWeightMeasure UnitCode="KG">23</MaximumWeightMeasure>
                                </PieceWeightAllowance>
                                <TotalQty>1</TotalQty>
                            </PieceAllowance>
                            <TypeCode>Checked</TypeCode>
                        </BaggageAllowance>
                        <BaggageAllowance>
                            <BaggageAllowanceID>CB8</BaggageAllowanceID>
                            <PieceAllowance>
                                <ApplicablePartyText>Traveler</ApplicablePartyText>
                                <PieceWeightAllowance>
                                    <MaximumWeightMeasure UnitCode="KG">23</MaximumWeightMeasure>
                                </PieceWeightAllowance>
                                <TotalQty>1</TotalQty>
                            </PieceAllowance>
                            <TypeCode>Checked</TypeCode>
                        </BaggageAllowance>
                        <BaggageAllowance>
                            <BaggageAllowanceID>CB9</BaggageAllowanceID>
                            <PieceAllowance>
                                <ApplicablePartyText>Traveler</ApplicablePartyText>
                                <PieceWeightAllowance>
                                    <MaximumWeightMeasure UnitCode="KG">10</MaximumWeightMeasure>
                                </PieceWeightAllowance>
                                <TotalQty>1</TotalQty>
                            </PieceAllowance>
                            <TypeCode>Checked</TypeCode>
                        </BaggageAllowance>
                        <BaggageAllowance>
                            <BaggageAllowanceID>CB10</BaggageAllowanceID>
                            <PieceAllowance>
                                <ApplicablePartyText>Traveler</ApplicablePartyText>
                                <PieceWeightAllowance>
                                    <MaximumWeightMeasure UnitCode="KG">10</MaximumWeightMeasure>
                                </PieceWeightAllowance>
                                <TotalQty>1</TotalQty>
                            </PieceAllowance>
                            <TypeCode>Checked</TypeCode>
                        </BaggageAllowance>
                        <BaggageAllowance>
                            <BaggageAllowanceID>CB11</BaggageAllowanceID>
                            <PieceAllowance>
                                <ApplicablePartyText>Traveler</ApplicablePartyText>
                                <PieceWeightAllowance>
                                    <MaximumWeightMeasure UnitCode="KG">23</MaximumWeightMeasure>
                                </PieceWeightAllowance>
                                <TotalQty>1</TotalQty>
                            </PieceAllowance>
                            <TypeCode>Checked</TypeCode>
                        </BaggageAllowance>
                        <BaggageAllowance>
                            <BaggageAllowanceID>CB12</BaggageAllowanceID>
                            <PieceAllowance>
                                <ApplicablePartyText>Traveler</ApplicablePartyText>
                                <PieceWeightAllowance>
                                    <MaximumWeightMeasure UnitCode="KG">23</MaximumWeightMeasure>
                                </PieceWeightAllowance>
                                <TotalQty>1</TotalQty>
                            </PieceAllowance>
                            <TypeCode>Checked</TypeCode>
                        </BaggageAllowance>
                        <BaggageAllowance>
                            <BaggageAllowanceID>CB13</BaggageAllowanceID>
                            <PieceAllowance>
                                <ApplicablePartyText>Traveler</ApplicablePartyText>
                                <PieceWeightAllowance>
                                    <MaximumWeightMeasure UnitCode="KG">23</MaximumWeightMeasure>
                                </PieceWeightAllowance>
                                <TotalQty>1</TotalQty>
                            </PieceAllowance>
                            <TypeCode>Checked</TypeCode>
                        </BaggageAllowance>
                        <BaggageAllowance>
                            <BaggageAllowanceID>CB14</BaggageAllowanceID>
                            <PieceAllowance>
                                <ApplicablePartyText>Traveler</ApplicablePartyText>
                                <PieceWeightAllowance>
                                    <MaximumWeightMeasure UnitCode="KG">23</MaximumWeightMeasure>
                                </PieceWeightAllowance>
                                <TotalQty>1</TotalQty>
                            </PieceAllowance>
                            <TypeCode>Checked</TypeCode>
                        </BaggageAllowance>
                        <BaggageAllowance>
                            <BaggageAllowanceID>CB15</BaggageAllowanceID>
                            <PieceAllowance>
                                <ApplicablePartyText>Traveler</ApplicablePartyText>
                                <PieceWeightAllowance>
                                    <MaximumWeightMeasure UnitCode="KG">23</MaximumWeightMeasure>
                                </PieceWeightAllowance>
                                <TotalQty>1</TotalQty>
                            </PieceAllowance>
                            <TypeCode>Checked</TypeCode>
                        </BaggageAllowance>
                        <BaggageAllowance>
                            <BaggageAllowanceID>CB16</BaggageAllowanceID>
                            <PieceAllowance>
                                <ApplicablePartyText>Traveler</ApplicablePartyText>
                                <PieceWeightAllowance>
                                    <MaximumWeightMeasure UnitCode="KG">23</MaximumWeightMeasure>
                                </PieceWeightAllowance>
                                <TotalQty>1</TotalQty>
                            </PieceAllowance>
                            <TypeCode>Checked</TypeCode>
                        </BaggageAllowance>
                        <BaggageAllowance>
                            <BaggageAllowanceID>CB17</BaggageAllowanceID>
                            <PieceAllowance>
                                <ApplicablePartyText>Traveler</ApplicablePartyText>
                                <PieceWeightAllowance>
                                    <MaximumWeightMeasure UnitCode="KG">10</MaximumWeightMeasure>
                                </PieceWeightAllowance>
                                <TotalQty>1</TotalQty>
                            </PieceAllowance>
                            <TypeCode>Checked</TypeCode>
                        </BaggageAllowance>
                        <BaggageAllowance>
                            <BaggageAllowanceID>CB18</BaggageAllowanceID>
                            <PieceAllowance>
                                <ApplicablePartyText>Traveler</ApplicablePartyText>
                                <PieceWeightAllowance>
                                    <MaximumWeightMeasure UnitCode="KG">10</MaximumWeightMeasure>
                                </PieceWeightAllowance>
                                <TotalQty>1</TotalQty>
                            </PieceAllowance>
                            <TypeCode>Checked</TypeCode>
                        </BaggageAllowance>
                        <BaggageAllowance>
                            <BaggageAllowanceID>CB19</BaggageAllowanceID>
                            <PieceAllowance>
                                <ApplicablePartyText>Traveler</ApplicablePartyText>
                                <PieceWeightAllowance>
                                    <MaximumWeightMeasure UnitCode="KG">23</MaximumWeightMeasure>
                                </PieceWeightAllowance>
                                <TotalQty>1</TotalQty>
                            </PieceAllowance>
                            <TypeCode>Checked</TypeCode>
                        </BaggageAllowance>
                        <BaggageAllowance>
                            <BaggageAllowanceID>CB20</BaggageAllowanceID>
                            <PieceAllowance>
                                <ApplicablePartyText>Traveler</ApplicablePartyText>
                                <PieceWeightAllowance>
                                    <MaximumWeightMeasure UnitCode="KG">23</MaximumWeightMeasure>
                                </PieceWeightAllowance>
                                <TotalQty>1</TotalQty>
                            </PieceAllowance>
                            <TypeCode>Checked</TypeCode>
                        </BaggageAllowance>
                        <BaggageAllowance>
                            <BaggageAllowanceID>CB21</BaggageAllowanceID>
                            <PieceAllowance>
                                <ApplicablePartyText>Traveler</ApplicablePartyText>
                                <PieceWeightAllowance>
                                    <MaximumWeightMeasure UnitCode="KG">23</MaximumWeightMeasure>
                                </PieceWeightAllowance>
                                <TotalQty>1</TotalQty>
                            </PieceAllowance>
                            <TypeCode>Checked</TypeCode>
                        </BaggageAllowance>
                        <BaggageAllowance>
                            <BaggageAllowanceID>CB22</BaggageAllowanceID>
                            <PieceAllowance>
                                <ApplicablePartyText>Traveler</ApplicablePartyText>
                                <PieceWeightAllowance>
                                    <MaximumWeightMeasure UnitCode="KG">23</MaximumWeightMeasure>
                                </PieceWeightAllowance>
                                <TotalQty>1</TotalQty>
                            </PieceAllowance>
                            <TypeCode>Checked</TypeCode>
                        </BaggageAllowance>
                        <BaggageAllowance>
                            <BaggageAllowanceID>CB23</BaggageAllowanceID>
                            <PieceAllowance>
                                <ApplicablePartyText>Traveler</ApplicablePartyText>
                                <PieceWeightAllowance>
                                    <MaximumWeightMeasure UnitCode="KG">23</MaximumWeightMeasure>
                                </PieceWeightAllowance>
                                <TotalQty>1</TotalQty>
                            </PieceAllowance>
                            <TypeCode>Checked</TypeCode>
                        </BaggageAllowance>
                        <BaggageAllowance>
                            <BaggageAllowanceID>CB24</BaggageAllowanceID>
                            <PieceAllowance>
                                <ApplicablePartyText>Traveler</ApplicablePartyText>
                                <PieceWeightAllowance>
                                    <MaximumWeightMeasure UnitCode="KG">23</MaximumWeightMeasure>
                                </PieceWeightAllowance>
                                <TotalQty>1</TotalQty>
                            </PieceAllowance>
                            <TypeCode>Checked</TypeCode>
                        </BaggageAllowance>
                        <BaggageAllowance>
                            <BaggageAllowanceID>CB25</BaggageAllowanceID>
                            <PieceAllowance>
                                <ApplicablePartyText>Traveler</ApplicablePartyText>
                                <PieceWeightAllowance>
                                    <MaximumWeightMeasure UnitCode="KG">10</MaximumWeightMeasure>
                                </PieceWeightAllowance>
                                <TotalQty>1</TotalQty>
                            </PieceAllowance>
                            <TypeCode>Checked</TypeCode>
                        </BaggageAllowance>
                        <BaggageAllowance>
                            <BaggageAllowanceID>CB26</BaggageAllowanceID>
                            <PieceAllowance>
                                <ApplicablePartyText>Traveler</ApplicablePartyText>
                                <PieceWeightAllowance>
                                    <MaximumWeightMeasure UnitCode="KG">10</MaximumWeightMeasure>
                                </PieceWeightAllowance>
                                <TotalQty>1</TotalQty>
                            </PieceAllowance>
                            <TypeCode>Checked</TypeCode>
                        </BaggageAllowance>
                        <BaggageAllowance>
                            <BaggageAllowanceID>CB27</BaggageAllowanceID>
                            <PieceAllowance>
                                <ApplicablePartyText>Traveler</ApplicablePartyText>
                                <PieceWeightAllowance>
                                    <MaximumWeightMeasure UnitCode="KG">23</MaximumWeightMeasure>
                                </PieceWeightAllowance>
                                <TotalQty>1</TotalQty>
                            </PieceAllowance>
                            <TypeCode>Checked</TypeCode>
                        </BaggageAllowance>
                        <BaggageAllowance>
                            <BaggageAllowanceID>CB28</BaggageAllowanceID>
                            <PieceAllowance>
                                <ApplicablePartyText>Traveler</ApplicablePartyText>
                                <PieceWeightAllowance>
                                    <MaximumWeightMeasure UnitCode="KG">23</MaximumWeightMeasure>
                                </PieceWeightAllowance>
                                <TotalQty>1</TotalQty>
                            </PieceAllowance>
                            <TypeCode>Checked</TypeCode>
                        </BaggageAllowance>
                        <BaggageAllowance>
                            <BaggageAllowanceID>CB29</BaggageAllowanceID>
                            <PieceAllowance>
                                <ApplicablePartyText>Traveler</ApplicablePartyText>
                                <PieceWeightAllowance>
                                    <MaximumWeightMeasure UnitCode="KG">23</MaximumWeightMeasure>
                                </PieceWeightAllowance>
                                <TotalQty>1</TotalQty>
                            </PieceAllowance>
                            <TypeCode>Checked</TypeCode>
                        </BaggageAllowance>
                        <BaggageAllowance>
                            <BaggageAllowanceID>CB30</BaggageAllowanceID>
                            <PieceAllowance>
                                <ApplicablePartyText>Traveler</ApplicablePartyText>
                                <PieceWeightAllowance>
                                    <MaximumWeightMeasure UnitCode="KG">23</MaximumWeightMeasure>
                                </PieceWeightAllowance>
                                <TotalQty>1</TotalQty>
                            </PieceAllowance>
                            <TypeCode>Checked</TypeCode>
                        </BaggageAllowance>
                        <BaggageAllowance>
                            <BaggageAllowanceID>CB31</BaggageAllowanceID>
                            <PieceAllowance>
                                <ApplicablePartyText>Traveler</ApplicablePartyText>
                                <PieceWeightAllowance>
                                    <MaximumWeightMeasure UnitCode="KG">23</MaximumWeightMeasure>
                                </PieceWeightAllowance>
                                <TotalQty>1</TotalQty>
                            </PieceAllowance>
                            <TypeCode>Checked</TypeCode>
                        </BaggageAllowance>
                        <BaggageAllowance>
                            <BaggageAllowanceID>CB32</BaggageAllowanceID>
                            <PieceAllowance>
                                <ApplicablePartyText>Traveler</ApplicablePartyText>
                                <PieceWeightAllowance>
                                    <MaximumWeightMeasure UnitCode="KG">23</MaximumWeightMeasure>
                                </PieceWeightAllowance>
                                <TotalQty>1</TotalQty>
                            </PieceAllowance>
                            <TypeCode>Checked</TypeCode>
                        </BaggageAllowance>
                        <BaggageAllowance>
                            <BaggageAllowanceID>CB33</BaggageAllowanceID>
                            <PieceAllowance>
                                <ApplicablePartyText>Traveler</ApplicablePartyText>
                                <PieceWeightAllowance>
                                    <MaximumWeightMeasure UnitCode="KG">10</MaximumWeightMeasure>
                                </PieceWeightAllowance>
                                <TotalQty>1</TotalQty>
                            </PieceAllowance>
                            <TypeCode>Checked</TypeCode>
                        </BaggageAllowance>
                        <BaggageAllowance>
                            <BaggageAllowanceID>CB34</BaggageAllowanceID>
                            <PieceAllowance>
                                <ApplicablePartyText>Traveler</ApplicablePartyText>
                                <PieceWeightAllowance>
                                    <MaximumWeightMeasure UnitCode="KG">10</MaximumWeightMeasure>
                                </PieceWeightAllowance>
                                <TotalQty>1</TotalQty>
                            </PieceAllowance>
                            <TypeCode>Checked</TypeCode>
                        </BaggageAllowance>
                        <BaggageAllowance>
                            <BaggageAllowanceID>CB35</BaggageAllowanceID>
                            <PieceAllowance>
                                <ApplicablePartyText>Traveler</ApplicablePartyText>
                                <PieceWeightAllowance>
                                    <MaximumWeightMeasure UnitCode="KG">23</MaximumWeightMeasure>
                                </PieceWeightAllowance>
                                <TotalQty>1</TotalQty>
                            </PieceAllowance>
                            <TypeCode>Checked</TypeCode>
                        </BaggageAllowance>
                        <BaggageAllowance>
                            <BaggageAllowanceID>CB36</BaggageAllowanceID>
                            <PieceAllowance>
                                <ApplicablePartyText>Traveler</ApplicablePartyText>
                                <PieceWeightAllowance>
                                    <MaximumWeightMeasure UnitCode="KG">23</MaximumWeightMeasure>
                                </PieceWeightAllowance>
                                <TotalQty>1</TotalQty>
                            </PieceAllowance>
                            <TypeCode>Checked</TypeCode>
                        </BaggageAllowance>
                        <BaggageAllowance>
                            <BaggageAllowanceID>CB37</BaggageAllowanceID>
                            <PieceAllowance>
                                <ApplicablePartyText>Traveler</ApplicablePartyText>
                                <PieceWeightAllowance>
                                    <MaximumWeightMeasure UnitCode="KG">23</MaximumWeightMeasure>
                                </PieceWeightAllowance>
                                <TotalQty>1</TotalQty>
                            </PieceAllowance>
                            <TypeCode>Checked</TypeCode>
                        </BaggageAllowance>
                        <BaggageAllowance>
                            <BaggageAllowanceID>CB38</BaggageAllowanceID>
                            <PieceAllowance>
                                <ApplicablePartyText>Traveler</ApplicablePartyText>
                                <PieceWeightAllowance>
                                    <MaximumWeightMeasure UnitCode="KG">23</MaximumWeightMeasure>
                                </PieceWeightAllowance>
                                <TotalQty>1</TotalQty>
                            </PieceAllowance>
                            <TypeCode>Checked</TypeCode>
                        </BaggageAllowance>
                        <BaggageAllowance>
                            <BaggageAllowanceID>CB39</BaggageAllowanceID>
                            <PieceAllowance>
                                <ApplicablePartyText>Traveler</ApplicablePartyText>
                                <PieceWeightAllowance>
                                    <MaximumWeightMeasure UnitCode="KG">23</MaximumWeightMeasure>
                                </PieceWeightAllowance>
                                <TotalQty>1</TotalQty>
                            </PieceAllowance>
                            <TypeCode>Checked</TypeCode>
                        </BaggageAllowance>
                        <BaggageAllowance>
                            <BaggageAllowanceID>CB40</BaggageAllowanceID>
                            <PieceAllowance>
                                <ApplicablePartyText>Traveler</ApplicablePartyText>
                                <PieceWeightAllowance>
                                    <MaximumWeightMeasure UnitCode="KG">23</MaximumWeightMeasure>
                                </PieceWeightAllowance>
                                <TotalQty>1</TotalQty>
                            </PieceAllowance>
                            <TypeCode>Checked</TypeCode>
                        </BaggageAllowance>
                        <BaggageAllowance>
                            <BaggageAllowanceID>CB41</BaggageAllowanceID>
                            <PieceAllowance>
                                <ApplicablePartyText>Traveler</ApplicablePartyText>
                                <PieceWeightAllowance>
                                    <MaximumWeightMeasure UnitCode="KG">10</MaximumWeightMeasure>
                                </PieceWeightAllowance>
                                <TotalQty>1</TotalQty>
                            </PieceAllowance>
                            <TypeCode>Checked</TypeCode>
                        </BaggageAllowance>
                        <BaggageAllowance>
                            <BaggageAllowanceID>CB42</BaggageAllowanceID>
                            <PieceAllowance>
                                <ApplicablePartyText>Traveler</ApplicablePartyText>
                                <PieceWeightAllowance>
                                    <MaximumWeightMeasure UnitCode="KG">10</MaximumWeightMeasure>
                                </PieceWeightAllowance>
                                <TotalQty>1</TotalQty>
                            </PieceAllowance>
                            <TypeCode>Checked</TypeCode>
                        </BaggageAllowance>
                        <BaggageAllowance>
                            <BaggageAllowanceID>CB43</BaggageAllowanceID>
                            <PieceAllowance>
                                <ApplicablePartyText>Traveler</ApplicablePartyText>
                                <PieceWeightAllowance>
                                    <MaximumWeightMeasure UnitCode="KG">23</MaximumWeightMeasure>
                                </PieceWeightAllowance>
                                <TotalQty>1</TotalQty>
                            </PieceAllowance>
                            <TypeCode>Checked</TypeCode>
                        </BaggageAllowance>
                        <BaggageAllowance>
                            <BaggageAllowanceID>CB44</BaggageAllowanceID>
                            <PieceAllowance>
                                <ApplicablePartyText>Traveler</ApplicablePartyText>
                                <PieceWeightAllowance>
                                    <MaximumWeightMeasure UnitCode="KG">23</MaximumWeightMeasure>
                                </PieceWeightAllowance>
                                <TotalQty>1</TotalQty>
                            </PieceAllowance>
                            <TypeCode>Checked</TypeCode>
                        </BaggageAllowance>
                        <BaggageAllowance>
                            <BaggageAllowanceID>CB45</BaggageAllowanceID>
                            <PieceAllowance>
                                <ApplicablePartyText>Traveler</ApplicablePartyText>
                                <PieceWeightAllowance>
                                    <MaximumWeightMeasure UnitCode="KG">23</MaximumWeightMeasure>
                                </PieceWeightAllowance>
                                <TotalQty>1</TotalQty>
                            </PieceAllowance>
                            <TypeCode>Checked</TypeCode>
                        </BaggageAllowance>
                        <BaggageAllowance>
                            <BaggageAllowanceID>CB46</BaggageAllowanceID>
                            <PieceAllowance>
                                <ApplicablePartyText>Traveler</ApplicablePartyText>
                                <PieceWeightAllowance>
                                    <MaximumWeightMeasure UnitCode="KG">23</MaximumWeightMeasure>
                                </PieceWeightAllowance>
                                <TotalQty>1</TotalQty>
                            </PieceAllowance>
                            <TypeCode>Checked</TypeCode>
                        </BaggageAllowance>
                        <BaggageAllowance>
                            <BaggageAllowanceID>CB47</BaggageAllowanceID>
                            <PieceAllowance>
                                <ApplicablePartyText>Traveler</ApplicablePartyText>
                                <PieceWeightAllowance>
                                    <MaximumWeightMeasure UnitCode="KG">23</MaximumWeightMeasure>
                                </PieceWeightAllowance>
                                <TotalQty>1</TotalQty>
                            </PieceAllowance>
                            <TypeCode>Checked</TypeCode>
                        </BaggageAllowance>
                        <BaggageAllowance>
                            <BaggageAllowanceID>CB48</BaggageAllowanceID>
                            <PieceAllowance>
                                <ApplicablePartyText>Traveler</ApplicablePartyText>
                                <PieceWeightAllowance>
                                    <MaximumWeightMeasure UnitCode="KG">23</MaximumWeightMeasure>
                                </PieceWeightAllowance>
                                <TotalQty>1</TotalQty>
                            </PieceAllowance>
                            <TypeCode>Checked</TypeCode>
                        </BaggageAllowance>
                    </BaggageAllowanceList>
                    <OriginDestList>
                        <OriginDest>
                            <DestCode>WAW</DestCode>
                            <OriginCode>LWO</OriginCode>
                            <OriginDestID>OD1</OriginDestID>
                            <PaxJourneyRefID>FL1</PaxJourneyRefID>
                            <PaxJourneyRefID>FL5</PaxJourneyRefID>
                        </OriginDest>
                        <OriginDest>
                            <DestCode>LWO</DestCode>
                            <OriginCode>WAW</OriginCode>
                            <OriginDestID>OD2</OriginDestID>
                            <PaxJourneyRefID>FL2</PaxJourneyRefID>
                            <PaxJourneyRefID>FL3</PaxJourneyRefID>
                            <PaxJourneyRefID>FL4</PaxJourneyRefID>
                        </OriginDest>
                    </OriginDestList>
                    <PaxJourneyList>
                        <PaxJourney>
                            <Duration>P0Y0M0DT4H30M0.000S</Duration>
                            <PaxJourneyID>FL1</PaxJourneyID>
                            <PaxSegmentRefID>SEG1</PaxSegmentRefID>
                            <PaxSegmentRefID>SEG2</PaxSegmentRefID>
                        </PaxJourney>
                        <PaxJourney>
                            <Duration>P0Y0M0DT4H45M0.000S</Duration>
                            <PaxJourneyID>FL2</PaxJourneyID>
                            <PaxSegmentRefID>SEG3</PaxSegmentRefID>
                            <PaxSegmentRefID>SEG4</PaxSegmentRefID>
                        </PaxJourney>
                        <PaxJourney>
                            <Duration>P0Y0M0DT13H35M0.000S</Duration>
                            <PaxJourneyID>FL3</PaxJourneyID>
                            <PaxSegmentRefID>SEG3</PaxSegmentRefID>
                            <PaxSegmentRefID>SEG5</PaxSegmentRefID>
                        </PaxJourney>
                        <PaxJourney>
                            <Duration>P0Y0M0DT22H0M0.000S</Duration>
                            <PaxJourneyID>FL4</PaxJourneyID>
                            <PaxSegmentRefID>SEG3</PaxSegmentRefID>
                            <PaxSegmentRefID>SEG6</PaxSegmentRefID>
                        </PaxJourney>
                        <PaxJourney>
                            <Duration>P0Y0M0DT22H20M0.000S</Duration>
                            <PaxJourneyID>FL5</PaxJourneyID>
                            <PaxSegmentRefID>SEG7</PaxSegmentRefID>
                            <PaxSegmentRefID>SEG8</PaxSegmentRefID>
                        </PaxJourney>
                    </PaxJourneyList>
                    <PaxList>
                        <Pax>
                            <PaxID>PAX1</PaxID>
                            <PTC>INF</PTC>
                        </Pax>
                        <Pax>
                            <PaxID>PAX2</PaxID>
                            <PTC>ADT</PTC>
                        </Pax>
                        <Pax>
                            <PaxID>PAX3</PaxID>
                            <PTC>ADT</PTC>
                        </Pax>
                        <Pax>
                            <PaxID>PAX4</PaxID>
                            <PTC>CHD</PTC>
                        </Pax>
                    </PaxList>
                    <PaxSegmentList>
                        <PaxSegment>
                            <Arrival>
                                <AircraftScheduledDateTime>2021-07-17T08:30:00.000</AircraftScheduledDateTime>
                                <IATA_LocationCode>KBP</IATA_LocationCode>
                                <TerminalName>D</TerminalName>
                            </Arrival>
                            <DatedOperatingLeg>
                                <Arrival>
                                    <IATA_LocationCode>KBP</IATA_LocationCode>
                                </Arrival>
                                <CarrierAircraftType>
                                    <CarrierAircraftTypeCode>E90</CarrierAircraftTypeCode>
                                </CarrierAircraftType>
                                <DatedOperatingLegID>LG1</DatedOperatingLegID>
                                <Dep>
                                    <IATA_LocationCode>LWO</IATA_LocationCode>
                                </Dep>
                            </DatedOperatingLeg>
                            <Dep>
                                <AircraftScheduledDateTime>2021-07-17T07:00:00.000</AircraftScheduledDateTime>
                                <IATA_LocationCode>LWO</IATA_LocationCode>
                            </Dep>
                            <Duration>P0Y0M0DT1H30M0.000S</Duration>
                            <MarketingCarrierInfo>
                                <CarrierDesigCode>PS</CarrierDesigCode>
                                <MarketingCarrierFlightNumberText>34</MarketingCarrierFlightNumberText>
                            </MarketingCarrierInfo>
                            <OperatingCarrierInfo>
                                <CarrierDesigCode>PS</CarrierDesigCode>
                                <OperatingCarrierFlightNumberText>34</OperatingCarrierFlightNumberText>
                            </OperatingCarrierInfo>
                            <PaxSegmentID>SEG1</PaxSegmentID>
                        </PaxSegment>
                        <PaxSegment>
                            <Arrival>
                                <AircraftScheduledDateTime>2021-07-17T10:30:00.000</AircraftScheduledDateTime>
                                <IATA_LocationCode>WAW</IATA_LocationCode>
                            </Arrival>
                            <DatedOperatingLeg>
                                <Arrival>
                                    <IATA_LocationCode>WAW</IATA_LocationCode>
                                </Arrival>
                                <CarrierAircraftType>
                                    <CarrierAircraftTypeCode>737</CarrierAircraftTypeCode>
                                </CarrierAircraftType>
                                <DatedOperatingLegID>LG2</DatedOperatingLegID>
                                <Dep>
                                    <IATA_LocationCode>KBP</IATA_LocationCode>
                                </Dep>
                            </DatedOperatingLeg>
                            <Dep>
                                <AircraftScheduledDateTime>2021-07-17T09:55:00.000</AircraftScheduledDateTime>
                                <IATA_LocationCode>KBP</IATA_LocationCode>
                                <TerminalName>D</TerminalName>
                            </Dep>
                            <Duration>P0Y0M0DT1H35M0.000S</Duration>
                            <MarketingCarrierInfo>
                                <CarrierDesigCode>PS</CarrierDesigCode>
                                <MarketingCarrierFlightNumberText>801</MarketingCarrierFlightNumberText>
                            </MarketingCarrierInfo>
                            <OperatingCarrierInfo>
                                <CarrierDesigCode>PS</CarrierDesigCode>
                                <OperatingCarrierFlightNumberText>801</OperatingCarrierFlightNumberText>
                            </OperatingCarrierInfo>
                            <PaxSegmentID>SEG2</PaxSegmentID>
                        </PaxSegment>
                        <PaxSegment>
                            <Arrival>
                                <AircraftScheduledDateTime>2021-07-27T23:30:00.000</AircraftScheduledDateTime>
                                <IATA_LocationCode>KBP</IATA_LocationCode>
                                <TerminalName>D</TerminalName>
                            </Arrival>
                            <DatedOperatingLeg>
                                <Arrival>
                                    <IATA_LocationCode>KBP</IATA_LocationCode>
                                </Arrival>
                                <CarrierAircraftType>
                                    <CarrierAircraftTypeCode>737</CarrierAircraftTypeCode>
                                </CarrierAircraftType>
                                <DatedOperatingLegID>LG3</DatedOperatingLegID>
                                <Dep>
                                    <IATA_LocationCode>WAW</IATA_LocationCode>
                                </Dep>
                            </DatedOperatingLeg>
                            <Dep>
                                <AircraftScheduledDateTime>2021-07-27T21:00:00.000</AircraftScheduledDateTime>
                                <IATA_LocationCode>WAW</IATA_LocationCode>
                            </Dep>
                            <Duration>P0Y0M0DT1H30M0.000S</Duration>
                            <MarketingCarrierInfo>
                                <CarrierDesigCode>PS</CarrierDesigCode>
                                <MarketingCarrierFlightNumberText>804</MarketingCarrierFlightNumberText>
                            </MarketingCarrierInfo>
                            <OperatingCarrierInfo>
                                <CarrierDesigCode>PS</CarrierDesigCode>
                                <OperatingCarrierFlightNumberText>804</OperatingCarrierFlightNumberText>
                            </OperatingCarrierInfo>
                            <PaxSegmentID>SEG3</PaxSegmentID>
                        </PaxSegment>
                        <PaxSegment>
                            <Arrival>
                                <AircraftScheduledDateTime>2021-07-28T02:45:00.000</AircraftScheduledDateTime>
                                <IATA_LocationCode>LWO</IATA_LocationCode>
                            </Arrival>
                            <DatedOperatingLeg>
                                <Arrival>
                                    <IATA_LocationCode>LWO</IATA_LocationCode>
                                </Arrival>
                                <CarrierAircraftType>
                                    <CarrierAircraftTypeCode>E90</CarrierAircraftTypeCode>
                                </CarrierAircraftType>
                                <DatedOperatingLegID>LG4</DatedOperatingLegID>
                                <Dep>
                                    <IATA_LocationCode>KBP</IATA_LocationCode>
                                </Dep>
                            </DatedOperatingLeg>
                            <Dep>
                                <AircraftScheduledDateTime>2021-07-28T01:10:00.000</AircraftScheduledDateTime>
                                <IATA_LocationCode>KBP</IATA_LocationCode>
                                <TerminalName>D</TerminalName>
                            </Dep>
                            <Duration>P0Y0M0DT1H35M0.000S</Duration>
                            <MarketingCarrierInfo>
                                <CarrierDesigCode>PS</CarrierDesigCode>
                                <MarketingCarrierFlightNumberText>33</MarketingCarrierFlightNumberText>
                            </MarketingCarrierInfo>
                            <OperatingCarrierInfo>
                                <CarrierDesigCode>PS</CarrierDesigCode>
                                <OperatingCarrierFlightNumberText>33</OperatingCarrierFlightNumberText>
                            </OperatingCarrierInfo>
                            <PaxSegmentID>SEG4</PaxSegmentID>
                        </PaxSegment>
                        <PaxSegment>
                            <Arrival>
                                <AircraftScheduledDateTime>2021-07-28T11:35:00.000</AircraftScheduledDateTime>
                                <IATA_LocationCode>LWO</IATA_LocationCode>
                            </Arrival>
                            <DatedOperatingLeg>
                                <Arrival>
                                    <IATA_LocationCode>LWO</IATA_LocationCode>
                                </Arrival>
                                <CarrierAircraftType>
                                    <CarrierAircraftTypeCode>E90</CarrierAircraftTypeCode>
                                </CarrierAircraftType>
                                <DatedOperatingLegID>LG5</DatedOperatingLegID>
                                <Dep>
                                    <IATA_LocationCode>KBP</IATA_LocationCode>
                                </Dep>
                            </DatedOperatingLeg>
                            <Dep>
                                <AircraftScheduledDateTime>2021-07-28T10:00:00.000</AircraftScheduledDateTime>
                                <IATA_LocationCode>KBP</IATA_LocationCode>
                                <TerminalName>D</TerminalName>
                            </Dep>
                            <Duration>P0Y0M0DT1H35M0.000S</Duration>
                            <MarketingCarrierInfo>
                                <CarrierDesigCode>PS</CarrierDesigCode>
                                <MarketingCarrierFlightNumberText>35</MarketingCarrierFlightNumberText>
                            </MarketingCarrierInfo>
                            <OperatingCarrierInfo>
                                <CarrierDesigCode>PS</CarrierDesigCode>
                                <OperatingCarrierFlightNumberText>35</OperatingCarrierFlightNumberText>
                            </OperatingCarrierInfo>
                            <PaxSegmentID>SEG5</PaxSegmentID>
                        </PaxSegment>
                        <PaxSegment>
                            <Arrival>
                                <AircraftScheduledDateTime>2021-07-28T20:00:00.000</AircraftScheduledDateTime>
                                <IATA_LocationCode>LWO</IATA_LocationCode>
                            </Arrival>
                            <DatedOperatingLeg>
                                <Arrival>
                                    <IATA_LocationCode>LWO</IATA_LocationCode>
                                </Arrival>
                                <CarrierAircraftType>
                                    <CarrierAircraftTypeCode>E90</CarrierAircraftTypeCode>
                                </CarrierAircraftType>
                                <DatedOperatingLegID>LG6</DatedOperatingLegID>
                                <Dep>
                                    <IATA_LocationCode>KBP</IATA_LocationCode>
                                </Dep>
                            </DatedOperatingLeg>
                            <Dep>
                                <AircraftScheduledDateTime>2021-07-28T18:25:00.000</AircraftScheduledDateTime>
                                <IATA_LocationCode>KBP</IATA_LocationCode>
                                <TerminalName>D</TerminalName>
                            </Dep>
                            <Duration>P0Y0M0DT1H35M0.000S</Duration>
                            <MarketingCarrierInfo>
                                <CarrierDesigCode>PS</CarrierDesigCode>
                                <MarketingCarrierFlightNumberText>37</MarketingCarrierFlightNumberText>
                            </MarketingCarrierInfo>
                            <OperatingCarrierInfo>
                                <CarrierDesigCode>PS</CarrierDesigCode>
                                <OperatingCarrierFlightNumberText>37</OperatingCarrierFlightNumberText>
                            </OperatingCarrierInfo>
                            <PaxSegmentID>SEG6</PaxSegmentID>
                        </PaxSegment>
                        <PaxSegment>
                            <Arrival>
                                <AircraftScheduledDateTime>2021-07-17T23:00:00.000</AircraftScheduledDateTime>
                                <IATA_LocationCode>KBP</IATA_LocationCode>
                                <TerminalName>D</TerminalName>
                            </Arrival>
                            <DatedOperatingLeg>
                                <Arrival>
                                    <IATA_LocationCode>KBP</IATA_LocationCode>
                                </Arrival>
                                <CarrierAircraftType>
                                    <CarrierAircraftTypeCode>E90</CarrierAircraftTypeCode>
                                </CarrierAircraftType>
                                <DatedOperatingLegID>LG7</DatedOperatingLegID>
                                <Dep>
                                    <IATA_LocationCode>LWO</IATA_LocationCode>
                                </Dep>
                            </DatedOperatingLeg>
                            <Dep>
                                <AircraftScheduledDateTime>2021-07-17T21:30:00.000</AircraftScheduledDateTime>
                                <IATA_LocationCode>LWO</IATA_LocationCode>
                            </Dep>
                            <Duration>P0Y0M0DT1H30M0.000S</Duration>
                            <MarketingCarrierInfo>
                                <CarrierDesigCode>PS</CarrierDesigCode>
                                <MarketingCarrierFlightNumberText>38</MarketingCarrierFlightNumberText>
                            </MarketingCarrierInfo>
                            <OperatingCarrierInfo>
                                <CarrierDesigCode>PS</CarrierDesigCode>
                                <OperatingCarrierFlightNumberText>38</OperatingCarrierFlightNumberText>
                            </OperatingCarrierInfo>
                            <PaxSegmentID>SEG7</PaxSegmentID>
                        </PaxSegment>
                        <PaxSegment>
                            <Arrival>
                                <AircraftScheduledDateTime>2021-07-18T18:50:00.000</AircraftScheduledDateTime>
                                <IATA_LocationCode>WAW</IATA_LocationCode>
                            </Arrival>
                            <DatedOperatingLeg>
                                <Arrival>
                                    <IATA_LocationCode>WAW</IATA_LocationCode>
                                </Arrival>
                                <CarrierAircraftType>
                                    <CarrierAircraftTypeCode>737</CarrierAircraftTypeCode>
                                </CarrierAircraftType>
                                <DatedOperatingLegID>LG8</DatedOperatingLegID>
                                <Dep>
                                    <IATA_LocationCode>KBP</IATA_LocationCode>
                                </Dep>
                            </DatedOperatingLeg>
                            <Dep>
                                <AircraftScheduledDateTime>2021-07-18T18:15:00.000</AircraftScheduledDateTime>
                                <IATA_LocationCode>KBP</IATA_LocationCode>
                                <TerminalName>D</TerminalName>
                            </Dep>
                            <Duration>P0Y0M0DT1H35M0.000S</Duration>
                            <MarketingCarrierInfo>
                                <CarrierDesigCode>PS</CarrierDesigCode>
                                <MarketingCarrierFlightNumberText>803</MarketingCarrierFlightNumberText>
                            </MarketingCarrierInfo>
                            <OperatingCarrierInfo>
                                <CarrierDesigCode>PS</CarrierDesigCode>
                                <OperatingCarrierFlightNumberText>803</OperatingCarrierFlightNumberText>
                            </OperatingCarrierInfo>
                            <PaxSegmentID>SEG8</PaxSegmentID>
                        </PaxSegment>
                    </PaxSegmentList>
                    <PriceClassList>
                        <PriceClass>
                            <CabinType>
                                <CabinTypeCode>Y</CabinTypeCode>
                                <CabinTypeName>Economy</CabinTypeName>
                            </CabinType>
                            <Desc>
                                <DescText>REFUND: Refund with penalty</DescText>
                            </Desc>
                            <Desc>
                                <DescText>CHANGES: Changes with penalty (price difference is possible)</DescText>
                            </Desc>
                            <Desc>
                                <DescText>HAND_BAGGAGE: 1 Cabin bag 7KG (5KG on E-145) + 1 Piece of up to 5KG / Infant 1 bag x 5KG   </DescText>
                            </Desc>
                            <Desc>
                                <DescText>BAGGAGE: 1 bag up to 23KG / INF 10KG</DescText>
                            </Desc>
                            <FareBasisCode>X002SSU2</FareBasisCode>
                            <Name>ECONOMY STANDARD</Name>
                            <PriceClassID>PC1</PriceClassID>
                        </PriceClass>
                    </PriceClassList>
                    <ServiceDefinitionList>
                        <ServiceDefinition>
                            <Desc>
                                <DescText>Baggage included in fare</DescText>
                            </Desc>
                            <Name>Checked baggage</Name>
                            <ServiceDefinitionAssociation>
                                <BaggageAllowanceRefID>CB1</BaggageAllowanceRefID>
                            </ServiceDefinitionAssociation>
                            <ServiceDefinitionID>InclBag1</ServiceDefinitionID>
                        </ServiceDefinition>
                        <ServiceDefinition>
                            <Desc>
                                <DescText>Baggage included in fare</DescText>
                            </Desc>
                            <Name>Checked baggage</Name>
                            <ServiceDefinitionAssociation>
                                <BaggageAllowanceRefID>CB2</BaggageAllowanceRefID>
                            </ServiceDefinitionAssociation>
                            <ServiceDefinitionID>InclBag2</ServiceDefinitionID>
                        </ServiceDefinition>
                        <ServiceDefinition>
                            <Desc>
                                <DescText>Baggage included in fare</DescText>
                            </Desc>
                            <Name>Checked baggage</Name>
                            <ServiceDefinitionAssociation>
                                <BaggageAllowanceRefID>CB3</BaggageAllowanceRefID>
                            </ServiceDefinitionAssociation>
                            <ServiceDefinitionID>InclBag3</ServiceDefinitionID>
                        </ServiceDefinition>
                        <ServiceDefinition>
                            <Desc>
                                <DescText>Baggage included in fare</DescText>
                            </Desc>
                            <Name>Checked baggage</Name>
                            <ServiceDefinitionAssociation>
                                <BaggageAllowanceRefID>CB4</BaggageAllowanceRefID>
                            </ServiceDefinitionAssociation>
                            <ServiceDefinitionID>InclBag4</ServiceDefinitionID>
                        </ServiceDefinition>
                        <ServiceDefinition>
                            <Desc>
                                <DescText>Baggage included in fare</DescText>
                            </Desc>
                            <Name>Checked baggage</Name>
                            <ServiceDefinitionAssociation>
                                <BaggageAllowanceRefID>CB5</BaggageAllowanceRefID>
                            </ServiceDefinitionAssociation>
                            <ServiceDefinitionID>InclBag5</ServiceDefinitionID>
                        </ServiceDefinition>
                        <ServiceDefinition>
                            <Desc>
                                <DescText>Baggage included in fare</DescText>
                            </Desc>
                            <Name>Checked baggage</Name>
                            <ServiceDefinitionAssociation>
                                <BaggageAllowanceRefID>CB6</BaggageAllowanceRefID>
                            </ServiceDefinitionAssociation>
                            <ServiceDefinitionID>InclBag6</ServiceDefinitionID>
                        </ServiceDefinition>
                        <ServiceDefinition>
                            <Desc>
                                <DescText>Baggage included in fare</DescText>
                            </Desc>
                            <Name>Checked baggage</Name>
                            <ServiceDefinitionAssociation>
                                <BaggageAllowanceRefID>CB7</BaggageAllowanceRefID>
                            </ServiceDefinitionAssociation>
                            <ServiceDefinitionID>InclBag7</ServiceDefinitionID>
                        </ServiceDefinition>
                        <ServiceDefinition>
                            <Desc>
                                <DescText>Baggage included in fare</DescText>
                            </Desc>
                            <Name>Checked baggage</Name>
                            <ServiceDefinitionAssociation>
                                <BaggageAllowanceRefID>CB8</BaggageAllowanceRefID>
                            </ServiceDefinitionAssociation>
                            <ServiceDefinitionID>InclBag8</ServiceDefinitionID>
                        </ServiceDefinition>
                        <ServiceDefinition>
                            <Desc>
                                <DescText>Baggage included in fare</DescText>
                            </Desc>
                            <Name>Checked baggage</Name>
                            <ServiceDefinitionAssociation>
                                <BaggageAllowanceRefID>CB9</BaggageAllowanceRefID>
                            </ServiceDefinitionAssociation>
                            <ServiceDefinitionID>InclBag9</ServiceDefinitionID>
                        </ServiceDefinition>
                        <ServiceDefinition>
                            <Desc>
                                <DescText>Baggage included in fare</DescText>
                            </Desc>
                            <Name>Checked baggage</Name>
                            <ServiceDefinitionAssociation>
                                <BaggageAllowanceRefID>CB10</BaggageAllowanceRefID>
                            </ServiceDefinitionAssociation>
                            <ServiceDefinitionID>InclBag10</ServiceDefinitionID>
                        </ServiceDefinition>
                        <ServiceDefinition>
                            <Desc>
                                <DescText>Baggage included in fare</DescText>
                            </Desc>
                            <Name>Checked baggage</Name>
                            <ServiceDefinitionAssociation>
                                <BaggageAllowanceRefID>CB11</BaggageAllowanceRefID>
                            </ServiceDefinitionAssociation>
                            <ServiceDefinitionID>InclBag11</ServiceDefinitionID>
                        </ServiceDefinition>
                        <ServiceDefinition>
                            <Desc>
                                <DescText>Baggage included in fare</DescText>
                            </Desc>
                            <Name>Checked baggage</Name>
                            <ServiceDefinitionAssociation>
                                <BaggageAllowanceRefID>CB12</BaggageAllowanceRefID>
                            </ServiceDefinitionAssociation>
                            <ServiceDefinitionID>InclBag12</ServiceDefinitionID>
                        </ServiceDefinition>
                        <ServiceDefinition>
                            <Desc>
                                <DescText>Baggage included in fare</DescText>
                            </Desc>
                            <Name>Checked baggage</Name>
                            <ServiceDefinitionAssociation>
                                <BaggageAllowanceRefID>CB13</BaggageAllowanceRefID>
                            </ServiceDefinitionAssociation>
                            <ServiceDefinitionID>InclBag13</ServiceDefinitionID>
                        </ServiceDefinition>
                        <ServiceDefinition>
                            <Desc>
                                <DescText>Baggage included in fare</DescText>
                            </Desc>
                            <Name>Checked baggage</Name>
                            <ServiceDefinitionAssociation>
                                <BaggageAllowanceRefID>CB14</BaggageAllowanceRefID>
                            </ServiceDefinitionAssociation>
                            <ServiceDefinitionID>InclBag14</ServiceDefinitionID>
                        </ServiceDefinition>
                        <ServiceDefinition>
                            <Desc>
                                <DescText>Baggage included in fare</DescText>
                            </Desc>
                            <Name>Checked baggage</Name>
                            <ServiceDefinitionAssociation>
                                <BaggageAllowanceRefID>CB15</BaggageAllowanceRefID>
                            </ServiceDefinitionAssociation>
                            <ServiceDefinitionID>InclBag15</ServiceDefinitionID>
                        </ServiceDefinition>
                        <ServiceDefinition>
                            <Desc>
                                <DescText>Baggage included in fare</DescText>
                            </Desc>
                            <Name>Checked baggage</Name>
                            <ServiceDefinitionAssociation>
                                <BaggageAllowanceRefID>CB16</BaggageAllowanceRefID>
                            </ServiceDefinitionAssociation>
                            <ServiceDefinitionID>InclBag16</ServiceDefinitionID>
                        </ServiceDefinition>
                        <ServiceDefinition>
                            <Desc>
                                <DescText>Baggage included in fare</DescText>
                            </Desc>
                            <Name>Checked baggage</Name>
                            <ServiceDefinitionAssociation>
                                <BaggageAllowanceRefID>CB17</BaggageAllowanceRefID>
                            </ServiceDefinitionAssociation>
                            <ServiceDefinitionID>InclBag17</ServiceDefinitionID>
                        </ServiceDefinition>
                        <ServiceDefinition>
                            <Desc>
                                <DescText>Baggage included in fare</DescText>
                            </Desc>
                            <Name>Checked baggage</Name>
                            <ServiceDefinitionAssociation>
                                <BaggageAllowanceRefID>CB18</BaggageAllowanceRefID>
                            </ServiceDefinitionAssociation>
                            <ServiceDefinitionID>InclBag18</ServiceDefinitionID>
                        </ServiceDefinition>
                        <ServiceDefinition>
                            <Desc>
                                <DescText>Baggage included in fare</DescText>
                            </Desc>
                            <Name>Checked baggage</Name>
                            <ServiceDefinitionAssociation>
                                <BaggageAllowanceRefID>CB19</BaggageAllowanceRefID>
                            </ServiceDefinitionAssociation>
                            <ServiceDefinitionID>InclBag19</ServiceDefinitionID>
                        </ServiceDefinition>
                        <ServiceDefinition>
                            <Desc>
                                <DescText>Baggage included in fare</DescText>
                            </Desc>
                            <Name>Checked baggage</Name>
                            <ServiceDefinitionAssociation>
                                <BaggageAllowanceRefID>CB20</BaggageAllowanceRefID>
                            </ServiceDefinitionAssociation>
                            <ServiceDefinitionID>InclBag20</ServiceDefinitionID>
                        </ServiceDefinition>
                        <ServiceDefinition>
                            <Desc>
                                <DescText>Baggage included in fare</DescText>
                            </Desc>
                            <Name>Checked baggage</Name>
                            <ServiceDefinitionAssociation>
                                <BaggageAllowanceRefID>CB21</BaggageAllowanceRefID>
                            </ServiceDefinitionAssociation>
                            <ServiceDefinitionID>InclBag21</ServiceDefinitionID>
                        </ServiceDefinition>
                        <ServiceDefinition>
                            <Desc>
                                <DescText>Baggage included in fare</DescText>
                            </Desc>
                            <Name>Checked baggage</Name>
                            <ServiceDefinitionAssociation>
                                <BaggageAllowanceRefID>CB22</BaggageAllowanceRefID>
                            </ServiceDefinitionAssociation>
                            <ServiceDefinitionID>InclBag22</ServiceDefinitionID>
                        </ServiceDefinition>
                        <ServiceDefinition>
                            <Desc>
                                <DescText>Baggage included in fare</DescText>
                            </Desc>
                            <Name>Checked baggage</Name>
                            <ServiceDefinitionAssociation>
                                <BaggageAllowanceRefID>CB23</BaggageAllowanceRefID>
                            </ServiceDefinitionAssociation>
                            <ServiceDefinitionID>InclBag23</ServiceDefinitionID>
                        </ServiceDefinition>
                        <ServiceDefinition>
                            <Desc>
                                <DescText>Baggage included in fare</DescText>
                            </Desc>
                            <Name>Checked baggage</Name>
                            <ServiceDefinitionAssociation>
                                <BaggageAllowanceRefID>CB24</BaggageAllowanceRefID>
                            </ServiceDefinitionAssociation>
                            <ServiceDefinitionID>InclBag24</ServiceDefinitionID>
                        </ServiceDefinition>
                        <ServiceDefinition>
                            <Desc>
                                <DescText>Baggage included in fare</DescText>
                            </Desc>
                            <Name>Checked baggage</Name>
                            <ServiceDefinitionAssociation>
                                <BaggageAllowanceRefID>CB25</BaggageAllowanceRefID>
                            </ServiceDefinitionAssociation>
                            <ServiceDefinitionID>InclBag25</ServiceDefinitionID>
                        </ServiceDefinition>
                        <ServiceDefinition>
                            <Desc>
                                <DescText>Baggage included in fare</DescText>
                            </Desc>
                            <Name>Checked baggage</Name>
                            <ServiceDefinitionAssociation>
                                <BaggageAllowanceRefID>CB26</BaggageAllowanceRefID>
                            </ServiceDefinitionAssociation>
                            <ServiceDefinitionID>InclBag26</ServiceDefinitionID>
                        </ServiceDefinition>
                        <ServiceDefinition>
                            <Desc>
                                <DescText>Baggage included in fare</DescText>
                            </Desc>
                            <Name>Checked baggage</Name>
                            <ServiceDefinitionAssociation>
                                <BaggageAllowanceRefID>CB27</BaggageAllowanceRefID>
                            </ServiceDefinitionAssociation>
                            <ServiceDefinitionID>InclBag27</ServiceDefinitionID>
                        </ServiceDefinition>
                        <ServiceDefinition>
                            <Desc>
                                <DescText>Baggage included in fare</DescText>
                            </Desc>
                            <Name>Checked baggage</Name>
                            <ServiceDefinitionAssociation>
                                <BaggageAllowanceRefID>CB28</BaggageAllowanceRefID>
                            </ServiceDefinitionAssociation>
                            <ServiceDefinitionID>InclBag28</ServiceDefinitionID>
                        </ServiceDefinition>
                        <ServiceDefinition>
                            <Desc>
                                <DescText>Baggage included in fare</DescText>
                            </Desc>
                            <Name>Checked baggage</Name>
                            <ServiceDefinitionAssociation>
                                <BaggageAllowanceRefID>CB29</BaggageAllowanceRefID>
                            </ServiceDefinitionAssociation>
                            <ServiceDefinitionID>InclBag29</ServiceDefinitionID>
                        </ServiceDefinition>
                        <ServiceDefinition>
                            <Desc>
                                <DescText>Baggage included in fare</DescText>
                            </Desc>
                            <Name>Checked baggage</Name>
                            <ServiceDefinitionAssociation>
                                <BaggageAllowanceRefID>CB30</BaggageAllowanceRefID>
                            </ServiceDefinitionAssociation>
                            <ServiceDefinitionID>InclBag30</ServiceDefinitionID>
                        </ServiceDefinition>
                        <ServiceDefinition>
                            <Desc>
                                <DescText>Baggage included in fare</DescText>
                            </Desc>
                            <Name>Checked baggage</Name>
                            <ServiceDefinitionAssociation>
                                <BaggageAllowanceRefID>CB31</BaggageAllowanceRefID>
                            </ServiceDefinitionAssociation>
                            <ServiceDefinitionID>InclBag31</ServiceDefinitionID>
                        </ServiceDefinition>
                        <ServiceDefinition>
                            <Desc>
                                <DescText>Baggage included in fare</DescText>
                            </Desc>
                            <Name>Checked baggage</Name>
                            <ServiceDefinitionAssociation>
                                <BaggageAllowanceRefID>CB32</BaggageAllowanceRefID>
                            </ServiceDefinitionAssociation>
                            <ServiceDefinitionID>InclBag32</ServiceDefinitionID>
                        </ServiceDefinition>
                        <ServiceDefinition>
                            <Desc>
                                <DescText>Baggage included in fare</DescText>
                            </Desc>
                            <Name>Checked baggage</Name>
                            <ServiceDefinitionAssociation>
                                <BaggageAllowanceRefID>CB33</BaggageAllowanceRefID>
                            </ServiceDefinitionAssociation>
                            <ServiceDefinitionID>InclBag33</ServiceDefinitionID>
                        </ServiceDefinition>
                        <ServiceDefinition>
                            <Desc>
                                <DescText>Baggage included in fare</DescText>
                            </Desc>
                            <Name>Checked baggage</Name>
                            <ServiceDefinitionAssociation>
                                <BaggageAllowanceRefID>CB34</BaggageAllowanceRefID>
                            </ServiceDefinitionAssociation>
                            <ServiceDefinitionID>InclBag34</ServiceDefinitionID>
                        </ServiceDefinition>
                        <ServiceDefinition>
                            <Desc>
                                <DescText>Baggage included in fare</DescText>
                            </Desc>
                            <Name>Checked baggage</Name>
                            <ServiceDefinitionAssociation>
                                <BaggageAllowanceRefID>CB35</BaggageAllowanceRefID>
                            </ServiceDefinitionAssociation>
                            <ServiceDefinitionID>InclBag35</ServiceDefinitionID>
                        </ServiceDefinition>
                        <ServiceDefinition>
                            <Desc>
                                <DescText>Baggage included in fare</DescText>
                            </Desc>
                            <Name>Checked baggage</Name>
                            <ServiceDefinitionAssociation>
                                <BaggageAllowanceRefID>CB36</BaggageAllowanceRefID>
                            </ServiceDefinitionAssociation>
                            <ServiceDefinitionID>InclBag36</ServiceDefinitionID>
                        </ServiceDefinition>
                        <ServiceDefinition>
                            <Desc>
                                <DescText>Baggage included in fare</DescText>
                            </Desc>
                            <Name>Checked baggage</Name>
                            <ServiceDefinitionAssociation>
                                <BaggageAllowanceRefID>CB37</BaggageAllowanceRefID>
                            </ServiceDefinitionAssociation>
                            <ServiceDefinitionID>InclBag37</ServiceDefinitionID>
                        </ServiceDefinition>
                        <ServiceDefinition>
                            <Desc>
                                <DescText>Baggage included in fare</DescText>
                            </Desc>
                            <Name>Checked baggage</Name>
                            <ServiceDefinitionAssociation>
                                <BaggageAllowanceRefID>CB38</BaggageAllowanceRefID>
                            </ServiceDefinitionAssociation>
                            <ServiceDefinitionID>InclBag38</ServiceDefinitionID>
                        </ServiceDefinition>
                        <ServiceDefinition>
                            <Desc>
                                <DescText>Baggage included in fare</DescText>
                            </Desc>
                            <Name>Checked baggage</Name>
                            <ServiceDefinitionAssociation>
                                <BaggageAllowanceRefID>CB39</BaggageAllowanceRefID>
                            </ServiceDefinitionAssociation>
                            <ServiceDefinitionID>InclBag39</ServiceDefinitionID>
                        </ServiceDefinition>
                        <ServiceDefinition>
                            <Desc>
                                <DescText>Baggage included in fare</DescText>
                            </Desc>
                            <Name>Checked baggage</Name>
                            <ServiceDefinitionAssociation>
                                <BaggageAllowanceRefID>CB40</BaggageAllowanceRefID>
                            </ServiceDefinitionAssociation>
                            <ServiceDefinitionID>InclBag40</ServiceDefinitionID>
                        </ServiceDefinition>
                        <ServiceDefinition>
                            <Desc>
                                <DescText>Baggage included in fare</DescText>
                            </Desc>
                            <Name>Checked baggage</Name>
                            <ServiceDefinitionAssociation>
                                <BaggageAllowanceRefID>CB41</BaggageAllowanceRefID>
                            </ServiceDefinitionAssociation>
                            <ServiceDefinitionID>InclBag41</ServiceDefinitionID>
                        </ServiceDefinition>
                        <ServiceDefinition>
                            <Desc>
                                <DescText>Baggage included in fare</DescText>
                            </Desc>
                            <Name>Checked baggage</Name>
                            <ServiceDefinitionAssociation>
                                <BaggageAllowanceRefID>CB42</BaggageAllowanceRefID>
                            </ServiceDefinitionAssociation>
                            <ServiceDefinitionID>InclBag42</ServiceDefinitionID>
                        </ServiceDefinition>
                        <ServiceDefinition>
                            <Desc>
                                <DescText>Baggage included in fare</DescText>
                            </Desc>
                            <Name>Checked baggage</Name>
                            <ServiceDefinitionAssociation>
                                <BaggageAllowanceRefID>CB43</BaggageAllowanceRefID>
                            </ServiceDefinitionAssociation>
                            <ServiceDefinitionID>InclBag43</ServiceDefinitionID>
                        </ServiceDefinition>
                        <ServiceDefinition>
                            <Desc>
                                <DescText>Baggage included in fare</DescText>
                            </Desc>
                            <Name>Checked baggage</Name>
                            <ServiceDefinitionAssociation>
                                <BaggageAllowanceRefID>CB44</BaggageAllowanceRefID>
                            </ServiceDefinitionAssociation>
                            <ServiceDefinitionID>InclBag44</ServiceDefinitionID>
                        </ServiceDefinition>
                        <ServiceDefinition>
                            <Desc>
                                <DescText>Baggage included in fare</DescText>
                            </Desc>
                            <Name>Checked baggage</Name>
                            <ServiceDefinitionAssociation>
                                <BaggageAllowanceRefID>CB45</BaggageAllowanceRefID>
                            </ServiceDefinitionAssociation>
                            <ServiceDefinitionID>InclBag45</ServiceDefinitionID>
                        </ServiceDefinition>
                        <ServiceDefinition>
                            <Desc>
                                <DescText>Baggage included in fare</DescText>
                            </Desc>
                            <Name>Checked baggage</Name>
                            <ServiceDefinitionAssociation>
                                <BaggageAllowanceRefID>CB46</BaggageAllowanceRefID>
                            </ServiceDefinitionAssociation>
                            <ServiceDefinitionID>InclBag46</ServiceDefinitionID>
                        </ServiceDefinition>
                        <ServiceDefinition>
                            <Desc>
                                <DescText>Baggage included in fare</DescText>
                            </Desc>
                            <Name>Checked baggage</Name>
                            <ServiceDefinitionAssociation>
                                <BaggageAllowanceRefID>CB47</BaggageAllowanceRefID>
                            </ServiceDefinitionAssociation>
                            <ServiceDefinitionID>InclBag47</ServiceDefinitionID>
                        </ServiceDefinition>
                        <ServiceDefinition>
                            <Desc>
                                <DescText>Baggage included in fare</DescText>
                            </Desc>
                            <Name>Checked baggage</Name>
                            <ServiceDefinitionAssociation>
                                <BaggageAllowanceRefID>CB48</BaggageAllowanceRefID>
                            </ServiceDefinitionAssociation>
                            <ServiceDefinitionID>InclBag48</ServiceDefinitionID>
                        </ServiceDefinition>
                    </ServiceDefinitionList>
                </DataLists>
                <OffersGroup>
                    <CarrierOffers>
                        <Offer>
                            <JourneyOverview>
                                <JourneyPriceClass>
                                    <PaxJourneyRefID>FL1</PaxJourneyRefID>
                                </JourneyPriceClass>
                                <JourneyPriceClass>
                                    <PaxJourneyRefID>FL2</PaxJourneyRefID>
                                </JourneyPriceClass>
                            </JourneyOverview>
                            <OfferExpirationTimeLimitDateTime>2021-04-28T07:01:00.000</OfferExpirationTimeLimitDateTime>
                            <OfferID>52160087-2670-46a9-a340-c5f49b73de11</OfferID>
                            <OfferItem>
                                <FareDetail>
                                    <FareComponent>
                                        <FareBasisCode>X002SSU2</FareBasisCode>
                                        <PaxSegmentRefID>SEG1</PaxSegmentRefID>
                                        <PaxSegmentRefID>SEG2</PaxSegmentRefID>
                                        <Price>
                                            <BaseAmount CurCode="NUC">5.40</BaseAmount>
                                        </Price>
                                        <PriceClassRefID>PC1</PriceClassRefID>
                                        <RBD>
                                            <RBD_Code>X</RBD_Code>
                                        </RBD>
                                    </FareComponent>
                                    <FareComponent>
                                        <FareBasisCode>X002SSU2</FareBasisCode>
                                        <PaxSegmentRefID>SEG3</PaxSegmentRefID>
                                        <PaxSegmentRefID>SEG4</PaxSegmentRefID>
                                        <Price>
                                            <BaseAmount CurCode="NUC">5.40</BaseAmount>
                                        </Price>
                                        <PriceClassRefID>PC1</PriceClassRefID>
                                        <RBD>
                                            <RBD_Code>X</RBD_Code>
                                        </RBD>
                                    </FareComponent>
                                    <FarePriceType>
                                        <FarePriceTypeCode>Filed</FarePriceTypeCode>
                                        <Price>
                                            <BaseAmount CurCode="UAH">308.00</BaseAmount>
                                            <CurConversion>
                                                <Amount CurCode="NUC">10.80</Amount>
                                                <ConversionRate>1.000000</ConversionRate>
                                                <LocalAmount CurCode="UAH">308.00</LocalAmount>
                                            </CurConversion>
                                        </Price>
                                    </FarePriceType>
                                </FareDetail>
                                <OfferItemID>52160087-2670-46a9-a340-c5f49b73de11-PAX1</OfferItemID>
                                <Price>
                                    <BaseAmount CurCode="UAH">308.00</BaseAmount>
                                    <TaxSummary>
                                        <Tax>
                                            <Amount CurCode="UAH">51.00</Amount>
                                            <Country>
                                                <CountryCode>UA</CountryCode>
                                            </Country>
                                            <TaxCode>SE</TaxCode>
                                        </Tax>
                                        <TotalTaxAmount CurCode="UAH">51.00</TotalTaxAmount>
                                    </TaxSummary>
                                    <TotalAmount CurCode="UAH">359.00</TotalAmount>
                                </Price>
                                <Service>
                                    <PaxRefID>PAX1</PaxRefID>
                                    <ServiceAssociations>
                                        <PaxJourneyRefID>FL1</PaxJourneyRefID>
                                        <PaxJourneyRefID>FL2</PaxJourneyRefID>
                                    </ServiceAssociations>
                                    <ServiceID>PAX1_FL1_FL2</ServiceID>
                                </Service>
                                <Service>
                                    <PaxRefID>PAX1</PaxRefID>
                                    <ServiceAssociations>
                                        <ServiceDefinitionRef>
                                            <BaggageFlightAssociations>
                                                <PaxSegmentRefID>SEG1</PaxSegmentRefID>
                                                <PaxSegmentRefID>SEG2</PaxSegmentRefID>
                                            </BaggageFlightAssociations>
                                            <ServiceDefinitionRefID>InclBag1</ServiceDefinitionRefID>
                                        </ServiceDefinitionRef>
                                    </ServiceAssociations>
                                    <ServiceID>PAX1_SEG1_SEG2</ServiceID>
                                </Service>
                                <Service>
                                    <PaxRefID>PAX1</PaxRefID>
                                    <ServiceAssociations>
                                        <ServiceDefinitionRef>
                                            <BaggageFlightAssociations>
                                                <PaxSegmentRefID>SEG3</PaxSegmentRefID>
                                                <PaxSegmentRefID>SEG4</PaxSegmentRefID>
                                            </BaggageFlightAssociations>
                                            <ServiceDefinitionRefID>InclBag2</ServiceDefinitionRefID>
                                        </ServiceDefinitionRef>
                                    </ServiceAssociations>
                                    <ServiceID>PAX1_SEG3_SEG4</ServiceID>
                                </Service>
                            </OfferItem>
                            <OfferItem>
                                <FareDetail>
                                    <FareComponent>
                                        <FareBasisCode>X002SSU2</FareBasisCode>
                                        <PaxSegmentRefID>SEG1</PaxSegmentRefID>
                                        <PaxSegmentRefID>SEG2</PaxSegmentRefID>
                                        <Price>
                                            <BaseAmount CurCode="NUC">54.00</BaseAmount>
                                        </Price>
                                        <PriceClassRefID>PC1</PriceClassRefID>
                                        <RBD>
                                            <RBD_Code>X</RBD_Code>
                                        </RBD>
                                    </FareComponent>
                                    <FareComponent>
                                        <FareBasisCode>X002SSU2</FareBasisCode>
                                        <PaxSegmentRefID>SEG3</PaxSegmentRefID>
                                        <PaxSegmentRefID>SEG4</PaxSegmentRefID>
                                        <Price>
                                            <BaseAmount CurCode="NUC">54.00</BaseAmount>
                                        </Price>
                                        <PriceClassRefID>PC1</PriceClassRefID>
                                        <RBD>
                                            <RBD_Code>X</RBD_Code>
                                        </RBD>
                                    </FareComponent>
                                    <FarePriceType>
                                        <FarePriceTypeCode>Filed</FarePriceTypeCode>
                                        <Price>
                                            <BaseAmount CurCode="UAH">6034.00</BaseAmount>
                                            <CurConversion>
                                                <Amount CurCode="NUC">108.00</Amount>
                                                <ConversionRate>1.000000</ConversionRate>
                                                <LocalAmount CurCode="UAH">6034.00</LocalAmount>
                                            </CurConversion>
                                        </Price>
                                    </FarePriceType>
                                </FareDetail>
                                <OfferItemID>52160087-2670-46a9-a340-c5f49b73de11-PAX2</OfferItemID>
                                <Price>
                                    <BaseAmount CurCode="UAH">3017.00</BaseAmount>
                                    <TaxSummary>
                                        <Tax>
                                            <Amount CurCode="UAH">1676.00</Amount>
                                            <Country>
                                                <CountryCode>YQ</CountryCode>
                                            </Country>
                                            <TaxCode>AD</TaxCode>
                                        </Tax>
                                        <Tax>
                                            <Amount CurCode="UAH">205.00</Amount>
                                            <Country>
                                                <CountryCode>UA</CountryCode>
                                            </Country>
                                            <TaxCode>SE</TaxCode>
                                        </Tax>
                                        <Tax>
                                            <Amount CurCode="UAH">84.00</Amount>
                                            <Country>
                                                <CountryCode>UD</CountryCode>
                                            </Country>
                                            <TaxCode>DP</TaxCode>
                                        </Tax>
                                        <Tax>
                                            <Amount CurCode="UAH">531.00</Amount>
                                            <Country>
                                                <CountryCode>YK</CountryCode>
                                            </Country>
                                            <TaxCode>AE</TaxCode>
                                        </Tax>
                                        <Tax>
                                            <Amount CurCode="UAH">8.00</Amount>
                                            <Country>
                                                <CountryCode>ND</CountryCode>
                                            </Country>
                                            <TaxCode>AD</TaxCode>
                                        </Tax>
                                        <Tax>
                                            <Amount CurCode="UAH">443.00</Amount>
                                            <Country>
                                                <CountryCode>XW</CountryCode>
                                            </Country>
                                            <TaxCode>AE</TaxCode>
                                        </Tax>
                                        <TotalTaxAmount CurCode="UAH">2947.00</TotalTaxAmount>
                                    </TaxSummary>
                                    <TotalAmount CurCode="UAH">5964.00</TotalAmount>
                                </Price>
                                <Service>
                                    <PaxRefID>PAX2</PaxRefID>
                                    <ServiceAssociations>
                                        <PaxJourneyRefID>FL1</PaxJourneyRefID>
                                        <PaxJourneyRefID>FL2</PaxJourneyRefID>
                                    </ServiceAssociations>
                                    <ServiceID>PAX2_FL1_FL2</ServiceID>
                                </Service>
                                <Service>
                                    <PaxRefID>PAX2</PaxRefID>
                                    <ServiceAssociations>
                                        <ServiceDefinitionRef>
                                            <BaggageFlightAssociations>
                                                <PaxSegmentRefID>SEG1</PaxSegmentRefID>
                                                <PaxSegmentRefID>SEG2</PaxSegmentRefID>
                                            </BaggageFlightAssociations>
                                            <ServiceDefinitionRefID>InclBag3</ServiceDefinitionRefID>
                                        </ServiceDefinitionRef>
                                    </ServiceAssociations>
                                    <ServiceID>PAX2_SEG1_SEG2</ServiceID>
                                </Service>
                                <Service>
                                    <PaxRefID>PAX2</PaxRefID>
                                    <ServiceAssociations>
                                        <ServiceDefinitionRef>
                                            <BaggageFlightAssociations>
                                                <PaxSegmentRefID>SEG3</PaxSegmentRefID>
                                                <PaxSegmentRefID>SEG4</PaxSegmentRefID>
                                            </BaggageFlightAssociations>
                                            <ServiceDefinitionRefID>InclBag4</ServiceDefinitionRefID>
                                        </ServiceDefinitionRef>
                                    </ServiceAssociations>
                                    <ServiceID>PAX2_SEG3_SEG4</ServiceID>
                                </Service>
                            </OfferItem>
                            <OfferItem>
                                <FareDetail>
                                    <FareComponent>
                                        <FareBasisCode>X002SSU2</FareBasisCode>
                                        <PaxSegmentRefID>SEG1</PaxSegmentRefID>
                                        <PaxSegmentRefID>SEG2</PaxSegmentRefID>
                                        <Price>
                                            <BaseAmount CurCode="NUC">54.00</BaseAmount>
                                        </Price>
                                        <PriceClassRefID>PC1</PriceClassRefID>
                                        <RBD>
                                            <RBD_Code>X</RBD_Code>
                                        </RBD>
                                    </FareComponent>
                                    <FareComponent>
                                        <FareBasisCode>X002SSU2</FareBasisCode>
                                        <PaxSegmentRefID>SEG3</PaxSegmentRefID>
                                        <PaxSegmentRefID>SEG4</PaxSegmentRefID>
                                        <Price>
                                            <BaseAmount CurCode="NUC">54.00</BaseAmount>
                                        </Price>
                                        <PriceClassRefID>PC1</PriceClassRefID>
                                        <RBD>
                                            <RBD_Code>X</RBD_Code>
                                        </RBD>
                                    </FareComponent>
                                    <FarePriceType>
                                        <FarePriceTypeCode>Filed</FarePriceTypeCode>
                                        <Price>
                                            <BaseAmount CurCode="UAH">6034.00</BaseAmount>
                                            <CurConversion>
                                                <Amount CurCode="NUC">108.00</Amount>
                                                <ConversionRate>1.000000</ConversionRate>
                                                <LocalAmount CurCode="UAH">6034.00</LocalAmount>
                                            </CurConversion>
                                        </Price>
                                    </FarePriceType>
                                </FareDetail>
                                <OfferItemID>52160087-2670-46a9-a340-c5f49b73de11-PAX3</OfferItemID>
                                <Price>
                                    <BaseAmount CurCode="UAH">3017.00</BaseAmount>
                                    <TaxSummary>
                                        <Tax>
                                            <Amount CurCode="UAH">1676.00</Amount>
                                            <Country>
                                                <CountryCode>YQ</CountryCode>
                                            </Country>
                                            <TaxCode>AD</TaxCode>
                                        </Tax>
                                        <Tax>
                                            <Amount CurCode="UAH">205.00</Amount>
                                            <Country>
                                                <CountryCode>UA</CountryCode>
                                            </Country>
                                            <TaxCode>SE</TaxCode>
                                        </Tax>
                                        <Tax>
                                            <Amount CurCode="UAH">84.00</Amount>
                                            <Country>
                                                <CountryCode>UD</CountryCode>
                                            </Country>
                                            <TaxCode>DP</TaxCode>
                                        </Tax>
                                        <Tax>
                                            <Amount CurCode="UAH">531.00</Amount>
                                            <Country>
                                                <CountryCode>YK</CountryCode>
                                            </Country>
                                            <TaxCode>AE</TaxCode>
                                        </Tax>
                                        <Tax>
                                            <Amount CurCode="UAH">8.00</Amount>
                                            <Country>
                                                <CountryCode>ND</CountryCode>
                                            </Country>
                                            <TaxCode>AD</TaxCode>
                                        </Tax>
                                        <Tax>
                                            <Amount CurCode="UAH">443.00</Amount>
                                            <Country>
                                                <CountryCode>XW</CountryCode>
                                            </Country>
                                            <TaxCode>AE</TaxCode>
                                        </Tax>
                                        <TotalTaxAmount CurCode="UAH">2947.00</TotalTaxAmount>
                                    </TaxSummary>
                                    <TotalAmount CurCode="UAH">5964.00</TotalAmount>
                                </Price>
                                <Service>
                                    <PaxRefID>PAX3</PaxRefID>
                                    <ServiceAssociations>
                                        <PaxJourneyRefID>FL1</PaxJourneyRefID>
                                        <PaxJourneyRefID>FL2</PaxJourneyRefID>
                                    </ServiceAssociations>
                                    <ServiceID>PAX3_FL1_FL2</ServiceID>
                                </Service>
                                <Service>
                                    <PaxRefID>PAX3</PaxRefID>
                                    <ServiceAssociations>
                                        <ServiceDefinitionRef>
                                            <BaggageFlightAssociations>
                                                <PaxSegmentRefID>SEG1</PaxSegmentRefID>
                                                <PaxSegmentRefID>SEG2</PaxSegmentRefID>
                                            </BaggageFlightAssociations>
                                            <ServiceDefinitionRefID>InclBag5</ServiceDefinitionRefID>
                                        </ServiceDefinitionRef>
                                    </ServiceAssociations>
                                    <ServiceID>PAX3_SEG1_SEG2</ServiceID>
                                </Service>
                                <Service>
                                    <PaxRefID>PAX3</PaxRefID>
                                    <ServiceAssociations>
                                        <ServiceDefinitionRef>
                                            <BaggageFlightAssociations>
                                                <PaxSegmentRefID>SEG3</PaxSegmentRefID>
                                                <PaxSegmentRefID>SEG4</PaxSegmentRefID>
                                            </BaggageFlightAssociations>
                                            <ServiceDefinitionRefID>InclBag6</ServiceDefinitionRefID>
                                        </ServiceDefinitionRef>
                                    </ServiceAssociations>
                                    <ServiceID>PAX3_SEG3_SEG4</ServiceID>
                                </Service>
                            </OfferItem>
                            <OfferItem>
                                <FareDetail>
                                    <FareComponent>
                                        <FareBasisCode>X002SSU2</FareBasisCode>
                                        <PaxSegmentRefID>SEG1</PaxSegmentRefID>
                                        <PaxSegmentRefID>SEG2</PaxSegmentRefID>
                                        <Price>
                                            <BaseAmount CurCode="NUC">40.50</BaseAmount>
                                        </Price>
                                        <PriceClassRefID>PC1</PriceClassRefID>
                                        <RBD>
                                            <RBD_Code>X</RBD_Code>
                                        </RBD>
                                    </FareComponent>
                                    <FareComponent>
                                        <FareBasisCode>X002SSU2</FareBasisCode>
                                        <PaxSegmentRefID>SEG3</PaxSegmentRefID>
                                        <PaxSegmentRefID>SEG4</PaxSegmentRefID>
                                        <Price>
                                            <BaseAmount CurCode="NUC">40.50</BaseAmount>
                                        </Price>
                                        <PriceClassRefID>PC1</PriceClassRefID>
                                        <RBD>
                                            <RBD_Code>X</RBD_Code>
                                        </RBD>
                                    </FareComponent>
                                    <FarePriceType>
                                        <FarePriceTypeCode>Filed</FarePriceTypeCode>
                                        <Price>
                                            <BaseAmount CurCode="UAH">2263.00</BaseAmount>
                                            <CurConversion>
                                                <Amount CurCode="NUC">81.00</Amount>
                                                <ConversionRate>1.000000</ConversionRate>
                                                <LocalAmount CurCode="UAH">2263.00</LocalAmount>
                                            </CurConversion>
                                        </Price>
                                    </FarePriceType>
                                </FareDetail>
                                <OfferItemID>52160087-2670-46a9-a340-c5f49b73de11-PAX4</OfferItemID>
                                <Price>
                                    <BaseAmount CurCode="UAH">2263.00</BaseAmount>
                                    <TaxSummary>
                                        <Tax>
                                            <Amount CurCode="UAH">1676.00</Amount>
                                            <Country>
                                                <CountryCode>YQ</CountryCode>
                                            </Country>
                                            <TaxCode>AD</TaxCode>
                                        </Tax>
                                        <Tax>
                                            <Amount CurCode="UAH">205.00</Amount>
                                            <Country>
                                                <CountryCode>UA</CountryCode>
                                            </Country>
                                            <TaxCode>SE</TaxCode>
                                        </Tax>
                                        <Tax>
                                            <Amount CurCode="UAH">84.00</Amount>
                                            <Country>
                                                <CountryCode>UD</CountryCode>
                                            </Country>
                                            <TaxCode>DP</TaxCode>
                                        </Tax>
                                        <Tax>
                                            <Amount CurCode="UAH">531.00</Amount>
                                            <Country>
                                                <CountryCode>YK</CountryCode>
                                            </Country>
                                            <TaxCode>AE</TaxCode>
                                        </Tax>
                                        <Tax>
                                            <Amount CurCode="UAH">8.00</Amount>
                                            <Country>
                                                <CountryCode>ND</CountryCode>
                                            </Country>
                                            <TaxCode>AD</TaxCode>
                                        </Tax>
                                        <Tax>
                                            <Amount CurCode="UAH">443.00</Amount>
                                            <Country>
                                                <CountryCode>XW</CountryCode>
                                            </Country>
                                            <TaxCode>AE</TaxCode>
                                        </Tax>
                                        <TotalTaxAmount CurCode="UAH">2947.00</TotalTaxAmount>
                                    </TaxSummary>
                                    <TotalAmount CurCode="UAH">5210.00</TotalAmount>
                                </Price>
                                <Service>
                                    <PaxRefID>PAX4</PaxRefID>
                                    <ServiceAssociations>
                                        <PaxJourneyRefID>FL1</PaxJourneyRefID>
                                        <PaxJourneyRefID>FL2</PaxJourneyRefID>
                                    </ServiceAssociations>
                                    <ServiceID>PAX4_FL1_FL2</ServiceID>
                                </Service>
                                <Service>
                                    <PaxRefID>PAX4</PaxRefID>
                                    <ServiceAssociations>
                                        <ServiceDefinitionRef>
                                            <BaggageFlightAssociations>
                                                <PaxSegmentRefID>SEG1</PaxSegmentRefID>
                                                <PaxSegmentRefID>SEG2</PaxSegmentRefID>
                                            </BaggageFlightAssociations>
                                            <ServiceDefinitionRefID>InclBag7</ServiceDefinitionRefID>
                                        </ServiceDefinitionRef>
                                    </ServiceAssociations>
                                    <ServiceID>PAX4_SEG1_SEG2</ServiceID>
                                </Service>
                                <Service>
                                    <PaxRefID>PAX4</PaxRefID>
                                    <ServiceAssociations>
                                        <ServiceDefinitionRef>
                                            <BaggageFlightAssociations>
                                                <PaxSegmentRefID>SEG3</PaxSegmentRefID>
                                                <PaxSegmentRefID>SEG4</PaxSegmentRefID>
                                            </BaggageFlightAssociations>
                                            <ServiceDefinitionRefID>InclBag8</ServiceDefinitionRefID>
                                        </ServiceDefinitionRef>
                                    </ServiceAssociations>
                                    <ServiceID>PAX4_SEG3_SEG4</ServiceID>
                                </Service>
                            </OfferItem>
                            <OwnerCode>PS</OwnerCode>
                            <PTC_OfferParameters>
                                <PricedPaxNumber>2</PricedPaxNumber>
                                <PTC_PricedCode>ADT</PTC_PricedCode>
                                <PTC_RequestedCode>ADT</PTC_RequestedCode>
                                <RequestedPaxNumber>2</RequestedPaxNumber>
                            </PTC_OfferParameters>
                            <PTC_OfferParameters>
                                <PricedPaxNumber>1</PricedPaxNumber>
                                <PTC_PricedCode>INF</PTC_PricedCode>
                                <PTC_RequestedCode>INF</PTC_RequestedCode>
                                <RequestedPaxNumber>1</RequestedPaxNumber>
                            </PTC_OfferParameters>
                            <PTC_OfferParameters>
                                <PricedPaxNumber>1</PricedPaxNumber>
                                <PTC_PricedCode>CHD</PTC_PricedCode>
                                <PTC_RequestedCode>CHD</PTC_RequestedCode>
                                <RequestedPaxNumber>1</RequestedPaxNumber>
                            </PTC_OfferParameters>
                            <TotalPrice>
                                <TotalAmount CurCode="UAH">17497.00</TotalAmount>
                            </TotalPrice>
                        </Offer>
                        <Offer>
                            <JourneyOverview>
                                <JourneyPriceClass>
                                    <PaxJourneyRefID>FL1</PaxJourneyRefID>
                                </JourneyPriceClass>
                                <JourneyPriceClass>
                                    <PaxJourneyRefID>FL3</PaxJourneyRefID>
                                </JourneyPriceClass>
                            </JourneyOverview>
                            <OfferExpirationTimeLimitDateTime>2021-04-28T07:01:00.000</OfferExpirationTimeLimitDateTime>
                            <OfferID>0445db04-a885-4b37-b236-c1b8a669f979</OfferID>
                            <OfferItem>
                                <FareDetail>
                                    <FareComponent>
                                        <FareBasisCode>X002SSU2</FareBasisCode>
                                        <PaxSegmentRefID>SEG1</PaxSegmentRefID>
                                        <PaxSegmentRefID>SEG2</PaxSegmentRefID>
                                        <Price>
                                            <BaseAmount CurCode="NUC">5.40</BaseAmount>
                                        </Price>
                                        <PriceClassRefID>PC1</PriceClassRefID>
                                        <RBD>
                                            <RBD_Code>X</RBD_Code>
                                        </RBD>
                                    </FareComponent>
                                    <FareComponent>
                                        <FareBasisCode>X002SSU2</FareBasisCode>
                                        <PaxSegmentRefID>SEG3</PaxSegmentRefID>
                                        <PaxSegmentRefID>SEG5</PaxSegmentRefID>
                                        <Price>
                                            <BaseAmount CurCode="NUC">5.40</BaseAmount>
                                        </Price>
                                        <PriceClassRefID>PC1</PriceClassRefID>
                                        <RBD>
                                            <RBD_Code>X</RBD_Code>
                                        </RBD>
                                    </FareComponent>
                                    <FarePriceType>
                                        <FarePriceTypeCode>Filed</FarePriceTypeCode>
                                        <Price>
                                            <BaseAmount CurCode="UAH">308.00</BaseAmount>
                                            <CurConversion>
                                                <Amount CurCode="NUC">10.80</Amount>
                                                <ConversionRate>1.000000</ConversionRate>
                                                <LocalAmount CurCode="UAH">308.00</LocalAmount>
                                            </CurConversion>
                                        </Price>
                                    </FarePriceType>
                                </FareDetail>
                                <OfferItemID>0445db04-a885-4b37-b236-c1b8a669f979-PAX1</OfferItemID>
                                <Price>
                                    <BaseAmount CurCode="UAH">308.00</BaseAmount>
                                    <TaxSummary>
                                        <Tax>
                                            <Amount CurCode="UAH">51.00</Amount>
                                            <Country>
                                                <CountryCode>UA</CountryCode>
                                            </Country>
                                            <TaxCode>SE</TaxCode>
                                        </Tax>
                                        <TotalTaxAmount CurCode="UAH">51.00</TotalTaxAmount>
                                    </TaxSummary>
                                    <TotalAmount CurCode="UAH">359.00</TotalAmount>
                                </Price>
                                <Service>
                                    <PaxRefID>PAX1</PaxRefID>
                                    <ServiceAssociations>
                                        <PaxJourneyRefID>FL1</PaxJourneyRefID>
                                        <PaxJourneyRefID>FL3</PaxJourneyRefID>
                                    </ServiceAssociations>
                                    <ServiceID>PAX1_FL1_FL3</ServiceID>
                                </Service>
                                <Service>
                                    <PaxRefID>PAX1</PaxRefID>
                                    <ServiceAssociations>
                                        <ServiceDefinitionRef>
                                            <BaggageFlightAssociations>
                                                <PaxSegmentRefID>SEG1</PaxSegmentRefID>
                                                <PaxSegmentRefID>SEG2</PaxSegmentRefID>
                                            </BaggageFlightAssociations>
                                            <ServiceDefinitionRefID>InclBag9</ServiceDefinitionRefID>
                                        </ServiceDefinitionRef>
                                    </ServiceAssociations>
                                    <ServiceID>PAX1_SEG1_SEG2</ServiceID>
                                </Service>
                                <Service>
                                    <PaxRefID>PAX1</PaxRefID>
                                    <ServiceAssociations>
                                        <ServiceDefinitionRef>
                                            <BaggageFlightAssociations>
                                                <PaxSegmentRefID>SEG3</PaxSegmentRefID>
                                                <PaxSegmentRefID>SEG5</PaxSegmentRefID>
                                            </BaggageFlightAssociations>
                                            <ServiceDefinitionRefID>InclBag10</ServiceDefinitionRefID>
                                        </ServiceDefinitionRef>
                                    </ServiceAssociations>
                                    <ServiceID>PAX1_SEG3_SEG5</ServiceID>
                                </Service>
                            </OfferItem>
                            <OfferItem>
                                <FareDetail>
                                    <FareComponent>
                                        <FareBasisCode>X002SSU2</FareBasisCode>
                                        <PaxSegmentRefID>SEG1</PaxSegmentRefID>
                                        <PaxSegmentRefID>SEG2</PaxSegmentRefID>
                                        <Price>
                                            <BaseAmount CurCode="NUC">54.00</BaseAmount>
                                        </Price>
                                        <PriceClassRefID>PC1</PriceClassRefID>
                                        <RBD>
                                            <RBD_Code>X</RBD_Code>
                                        </RBD>
                                    </FareComponent>
                                    <FareComponent>
                                        <FareBasisCode>X002SSU2</FareBasisCode>
                                        <PaxSegmentRefID>SEG3</PaxSegmentRefID>
                                        <PaxSegmentRefID>SEG5</PaxSegmentRefID>
                                        <Price>
                                            <BaseAmount CurCode="NUC">54.00</BaseAmount>
                                        </Price>
                                        <PriceClassRefID>PC1</PriceClassRefID>
                                        <RBD>
                                            <RBD_Code>X</RBD_Code>
                                        </RBD>
                                    </FareComponent>
                                    <FarePriceType>
                                        <FarePriceTypeCode>Filed</FarePriceTypeCode>
                                        <Price>
                                            <BaseAmount CurCode="UAH">6034.00</BaseAmount>
                                            <CurConversion>
                                                <Amount CurCode="NUC">108.00</Amount>
                                                <ConversionRate>1.000000</ConversionRate>
                                                <LocalAmount CurCode="UAH">6034.00</LocalAmount>
                                            </CurConversion>
                                        </Price>
                                    </FarePriceType>
                                </FareDetail>
                                <OfferItemID>0445db04-a885-4b37-b236-c1b8a669f979-PAX2</OfferItemID>
                                <Price>
                                    <BaseAmount CurCode="UAH">3017.00</BaseAmount>
                                    <TaxSummary>
                                        <Tax>
                                            <Amount CurCode="UAH">1676.00</Amount>
                                            <Country>
                                                <CountryCode>YQ</CountryCode>
                                            </Country>
                                            <TaxCode>AD</TaxCode>
                                        </Tax>
                                        <Tax>
                                            <Amount CurCode="UAH">205.00</Amount>
                                            <Country>
                                                <CountryCode>UA</CountryCode>
                                            </Country>
                                            <TaxCode>SE</TaxCode>
                                        </Tax>
                                        <Tax>
                                            <Amount CurCode="UAH">84.00</Amount>
                                            <Country>
                                                <CountryCode>UD</CountryCode>
                                            </Country>
                                            <TaxCode>DP</TaxCode>
                                        </Tax>
                                        <Tax>
                                            <Amount CurCode="UAH">531.00</Amount>
                                            <Country>
                                                <CountryCode>YK</CountryCode>
                                            </Country>
                                            <TaxCode>AE</TaxCode>
                                        </Tax>
                                        <Tax>
                                            <Amount CurCode="UAH">8.00</Amount>
                                            <Country>
                                                <CountryCode>ND</CountryCode>
                                            </Country>
                                            <TaxCode>AD</TaxCode>
                                        </Tax>
                                        <Tax>
                                            <Amount CurCode="UAH">443.00</Amount>
                                            <Country>
                                                <CountryCode>XW</CountryCode>
                                            </Country>
                                            <TaxCode>AE</TaxCode>
                                        </Tax>
                                        <TotalTaxAmount CurCode="UAH">2947.00</TotalTaxAmount>
                                    </TaxSummary>
                                    <TotalAmount CurCode="UAH">5964.00</TotalAmount>
                                </Price>
                                <Service>
                                    <PaxRefID>PAX2</PaxRefID>
                                    <ServiceAssociations>
                                        <PaxJourneyRefID>FL1</PaxJourneyRefID>
                                        <PaxJourneyRefID>FL3</PaxJourneyRefID>
                                    </ServiceAssociations>
                                    <ServiceID>PAX2_FL1_FL3</ServiceID>
                                </Service>
                                <Service>
                                    <PaxRefID>PAX2</PaxRefID>
                                    <ServiceAssociations>
                                        <ServiceDefinitionRef>
                                            <BaggageFlightAssociations>
                                                <PaxSegmentRefID>SEG1</PaxSegmentRefID>
                                                <PaxSegmentRefID>SEG2</PaxSegmentRefID>
                                            </BaggageFlightAssociations>
                                            <ServiceDefinitionRefID>InclBag11</ServiceDefinitionRefID>
                                        </ServiceDefinitionRef>
                                    </ServiceAssociations>
                                    <ServiceID>PAX2_SEG1_SEG2</ServiceID>
                                </Service>
                                <Service>
                                    <PaxRefID>PAX2</PaxRefID>
                                    <ServiceAssociations>
                                        <ServiceDefinitionRef>
                                            <BaggageFlightAssociations>
                                                <PaxSegmentRefID>SEG3</PaxSegmentRefID>
                                                <PaxSegmentRefID>SEG5</PaxSegmentRefID>
                                            </BaggageFlightAssociations>
                                            <ServiceDefinitionRefID>InclBag12</ServiceDefinitionRefID>
                                        </ServiceDefinitionRef>
                                    </ServiceAssociations>
                                    <ServiceID>PAX2_SEG3_SEG5</ServiceID>
                                </Service>
                            </OfferItem>
                            <OfferItem>
                                <FareDetail>
                                    <FareComponent>
                                        <FareBasisCode>X002SSU2</FareBasisCode>
                                        <PaxSegmentRefID>SEG1</PaxSegmentRefID>
                                        <PaxSegmentRefID>SEG2</PaxSegmentRefID>
                                        <Price>
                                            <BaseAmount CurCode="NUC">54.00</BaseAmount>
                                        </Price>
                                        <PriceClassRefID>PC1</PriceClassRefID>
                                        <RBD>
                                            <RBD_Code>X</RBD_Code>
                                        </RBD>
                                    </FareComponent>
                                    <FareComponent>
                                        <FareBasisCode>X002SSU2</FareBasisCode>
                                        <PaxSegmentRefID>SEG3</PaxSegmentRefID>
                                        <PaxSegmentRefID>SEG5</PaxSegmentRefID>
                                        <Price>
                                            <BaseAmount CurCode="NUC">54.00</BaseAmount>
                                        </Price>
                                        <PriceClassRefID>PC1</PriceClassRefID>
                                        <RBD>
                                            <RBD_Code>X</RBD_Code>
                                        </RBD>
                                    </FareComponent>
                                    <FarePriceType>
                                        <FarePriceTypeCode>Filed</FarePriceTypeCode>
                                        <Price>
                                            <BaseAmount CurCode="UAH">6034.00</BaseAmount>
                                            <CurConversion>
                                                <Amount CurCode="NUC">108.00</Amount>
                                                <ConversionRate>1.000000</ConversionRate>
                                                <LocalAmount CurCode="UAH">6034.00</LocalAmount>
                                            </CurConversion>
                                        </Price>
                                    </FarePriceType>
                                </FareDetail>
                                <OfferItemID>0445db04-a885-4b37-b236-c1b8a669f979-PAX3</OfferItemID>
                                <Price>
                                    <BaseAmount CurCode="UAH">3017.00</BaseAmount>
                                    <TaxSummary>
                                        <Tax>
                                            <Amount CurCode="UAH">1676.00</Amount>
                                            <Country>
                                                <CountryCode>YQ</CountryCode>
                                            </Country>
                                            <TaxCode>AD</TaxCode>
                                        </Tax>
                                        <Tax>
                                            <Amount CurCode="UAH">205.00</Amount>
                                            <Country>
                                                <CountryCode>UA</CountryCode>
                                            </Country>
                                            <TaxCode>SE</TaxCode>
                                        </Tax>
                                        <Tax>
                                            <Amount CurCode="UAH">84.00</Amount>
                                            <Country>
                                                <CountryCode>UD</CountryCode>
                                            </Country>
                                            <TaxCode>DP</TaxCode>
                                        </Tax>
                                        <Tax>
                                            <Amount CurCode="UAH">531.00</Amount>
                                            <Country>
                                                <CountryCode>YK</CountryCode>
                                            </Country>
                                            <TaxCode>AE</TaxCode>
                                        </Tax>
                                        <Tax>
                                            <Amount CurCode="UAH">8.00</Amount>
                                            <Country>
                                                <CountryCode>ND</CountryCode>
                                            </Country>
                                            <TaxCode>AD</TaxCode>
                                        </Tax>
                                        <Tax>
                                            <Amount CurCode="UAH">443.00</Amount>
                                            <Country>
                                                <CountryCode>XW</CountryCode>
                                            </Country>
                                            <TaxCode>AE</TaxCode>
                                        </Tax>
                                        <TotalTaxAmount CurCode="UAH">2947.00</TotalTaxAmount>
                                    </TaxSummary>
                                    <TotalAmount CurCode="UAH">5964.00</TotalAmount>
                                </Price>
                                <Service>
                                    <PaxRefID>PAX3</PaxRefID>
                                    <ServiceAssociations>
                                        <PaxJourneyRefID>FL1</PaxJourneyRefID>
                                        <PaxJourneyRefID>FL3</PaxJourneyRefID>
                                    </ServiceAssociations>
                                    <ServiceID>PAX3_FL1_FL3</ServiceID>
                                </Service>
                                <Service>
                                    <PaxRefID>PAX3</PaxRefID>
                                    <ServiceAssociations>
                                        <ServiceDefinitionRef>
                                            <BaggageFlightAssociations>
                                                <PaxSegmentRefID>SEG1</PaxSegmentRefID>
                                                <PaxSegmentRefID>SEG2</PaxSegmentRefID>
                                            </BaggageFlightAssociations>
                                            <ServiceDefinitionRefID>InclBag13</ServiceDefinitionRefID>
                                        </ServiceDefinitionRef>
                                    </ServiceAssociations>
                                    <ServiceID>PAX3_SEG1_SEG2</ServiceID>
                                </Service>
                                <Service>
                                    <PaxRefID>PAX3</PaxRefID>
                                    <ServiceAssociations>
                                        <ServiceDefinitionRef>
                                            <BaggageFlightAssociations>
                                                <PaxSegmentRefID>SEG3</PaxSegmentRefID>
                                                <PaxSegmentRefID>SEG5</PaxSegmentRefID>
                                            </BaggageFlightAssociations>
                                            <ServiceDefinitionRefID>InclBag14</ServiceDefinitionRefID>
                                        </ServiceDefinitionRef>
                                    </ServiceAssociations>
                                    <ServiceID>PAX3_SEG3_SEG5</ServiceID>
                                </Service>
                            </OfferItem>
                            <OfferItem>
                                <FareDetail>
                                    <FareComponent>
                                        <FareBasisCode>X002SSU2</FareBasisCode>
                                        <PaxSegmentRefID>SEG1</PaxSegmentRefID>
                                        <PaxSegmentRefID>SEG2</PaxSegmentRefID>
                                        <Price>
                                            <BaseAmount CurCode="NUC">40.50</BaseAmount>
                                        </Price>
                                        <PriceClassRefID>PC1</PriceClassRefID>
                                        <RBD>
                                            <RBD_Code>X</RBD_Code>
                                        </RBD>
                                    </FareComponent>
                                    <FareComponent>
                                        <FareBasisCode>X002SSU2</FareBasisCode>
                                        <PaxSegmentRefID>SEG3</PaxSegmentRefID>
                                        <PaxSegmentRefID>SEG5</PaxSegmentRefID>
                                        <Price>
                                            <BaseAmount CurCode="NUC">40.50</BaseAmount>
                                        </Price>
                                        <PriceClassRefID>PC1</PriceClassRefID>
                                        <RBD>
                                            <RBD_Code>X</RBD_Code>
                                        </RBD>
                                    </FareComponent>
                                    <FarePriceType>
                                        <FarePriceTypeCode>Filed</FarePriceTypeCode>
                                        <Price>
                                            <BaseAmount CurCode="UAH">2263.00</BaseAmount>
                                            <CurConversion>
                                                <Amount CurCode="NUC">81.00</Amount>
                                                <ConversionRate>1.000000</ConversionRate>
                                                <LocalAmount CurCode="UAH">2263.00</LocalAmount>
                                            </CurConversion>
                                        </Price>
                                    </FarePriceType>
                                </FareDetail>
                                <OfferItemID>0445db04-a885-4b37-b236-c1b8a669f979-PAX4</OfferItemID>
                                <Price>
                                    <BaseAmount CurCode="UAH">2263.00</BaseAmount>
                                    <TaxSummary>
                                        <Tax>
                                            <Amount CurCode="UAH">1676.00</Amount>
                                            <Country>
                                                <CountryCode>YQ</CountryCode>
                                            </Country>
                                            <TaxCode>AD</TaxCode>
                                        </Tax>
                                        <Tax>
                                            <Amount CurCode="UAH">205.00</Amount>
                                            <Country>
                                                <CountryCode>UA</CountryCode>
                                            </Country>
                                            <TaxCode>SE</TaxCode>
                                        </Tax>
                                        <Tax>
                                            <Amount CurCode="UAH">84.00</Amount>
                                            <Country>
                                                <CountryCode>UD</CountryCode>
                                            </Country>
                                            <TaxCode>DP</TaxCode>
                                        </Tax>
                                        <Tax>
                                            <Amount CurCode="UAH">531.00</Amount>
                                            <Country>
                                                <CountryCode>YK</CountryCode>
                                            </Country>
                                            <TaxCode>AE</TaxCode>
                                        </Tax>
                                        <Tax>
                                            <Amount CurCode="UAH">8.00</Amount>
                                            <Country>
                                                <CountryCode>ND</CountryCode>
                                            </Country>
                                            <TaxCode>AD</TaxCode>
                                        </Tax>
                                        <Tax>
                                            <Amount CurCode="UAH">443.00</Amount>
                                            <Country>
                                                <CountryCode>XW</CountryCode>
                                            </Country>
                                            <TaxCode>AE</TaxCode>
                                        </Tax>
                                        <TotalTaxAmount CurCode="UAH">2947.00</TotalTaxAmount>
                                    </TaxSummary>
                                    <TotalAmount CurCode="UAH">5210.00</TotalAmount>
                                </Price>
                                <Service>
                                    <PaxRefID>PAX4</PaxRefID>
                                    <ServiceAssociations>
                                        <PaxJourneyRefID>FL1</PaxJourneyRefID>
                                        <PaxJourneyRefID>FL3</PaxJourneyRefID>
                                    </ServiceAssociations>
                                    <ServiceID>PAX4_FL1_FL3</ServiceID>
                                </Service>
                                <Service>
                                    <PaxRefID>PAX4</PaxRefID>
                                    <ServiceAssociations>
                                        <ServiceDefinitionRef>
                                            <BaggageFlightAssociations>
                                                <PaxSegmentRefID>SEG1</PaxSegmentRefID>
                                                <PaxSegmentRefID>SEG2</PaxSegmentRefID>
                                            </BaggageFlightAssociations>
                                            <ServiceDefinitionRefID>InclBag15</ServiceDefinitionRefID>
                                        </ServiceDefinitionRef>
                                    </ServiceAssociations>
                                    <ServiceID>PAX4_SEG1_SEG2</ServiceID>
                                </Service>
                                <Service>
                                    <PaxRefID>PAX4</PaxRefID>
                                    <ServiceAssociations>
                                        <ServiceDefinitionRef>
                                            <BaggageFlightAssociations>
                                                <PaxSegmentRefID>SEG3</PaxSegmentRefID>
                                                <PaxSegmentRefID>SEG5</PaxSegmentRefID>
                                            </BaggageFlightAssociations>
                                            <ServiceDefinitionRefID>InclBag16</ServiceDefinitionRefID>
                                        </ServiceDefinitionRef>
                                    </ServiceAssociations>
                                    <ServiceID>PAX4_SEG3_SEG5</ServiceID>
                                </Service>
                            </OfferItem>
                            <OwnerCode>PS</OwnerCode>
                            <PTC_OfferParameters>
                                <PricedPaxNumber>2</PricedPaxNumber>
                                <PTC_PricedCode>ADT</PTC_PricedCode>
                                <PTC_RequestedCode>ADT</PTC_RequestedCode>
                                <RequestedPaxNumber>2</RequestedPaxNumber>
                            </PTC_OfferParameters>
                            <PTC_OfferParameters>
                                <PricedPaxNumber>1</PricedPaxNumber>
                                <PTC_PricedCode>INF</PTC_PricedCode>
                                <PTC_RequestedCode>INF</PTC_RequestedCode>
                                <RequestedPaxNumber>1</RequestedPaxNumber>
                            </PTC_OfferParameters>
                            <PTC_OfferParameters>
                                <PricedPaxNumber>1</PricedPaxNumber>
                                <PTC_PricedCode>CHD</PTC_PricedCode>
                                <PTC_RequestedCode>CHD</PTC_RequestedCode>
                                <RequestedPaxNumber>1</RequestedPaxNumber>
                            </PTC_OfferParameters>
                            <TotalPrice>
                                <TotalAmount CurCode="UAH">17497.00</TotalAmount>
                            </TotalPrice>
                        </Offer>
                        <Offer>
                            <JourneyOverview>
                                <JourneyPriceClass>
                                    <PaxJourneyRefID>FL1</PaxJourneyRefID>
                                </JourneyPriceClass>
                                <JourneyPriceClass>
                                    <PaxJourneyRefID>FL4</PaxJourneyRefID>
                                </JourneyPriceClass>
                            </JourneyOverview>
                            <OfferExpirationTimeLimitDateTime>2021-04-28T07:01:00.000</OfferExpirationTimeLimitDateTime>
                            <OfferID>198cafac-9b49-443e-8d69-65bbadbb3e89</OfferID>
                            <OfferItem>
                                <FareDetail>
                                    <FareComponent>
                                        <FareBasisCode>X002SSU2</FareBasisCode>
                                        <PaxSegmentRefID>SEG1</PaxSegmentRefID>
                                        <PaxSegmentRefID>SEG2</PaxSegmentRefID>
                                        <Price>
                                            <BaseAmount CurCode="NUC">5.40</BaseAmount>
                                        </Price>
                                        <PriceClassRefID>PC1</PriceClassRefID>
                                        <RBD>
                                            <RBD_Code>X</RBD_Code>
                                        </RBD>
                                    </FareComponent>
                                    <FareComponent>
                                        <FareBasisCode>X002SSU2</FareBasisCode>
                                        <PaxSegmentRefID>SEG3</PaxSegmentRefID>
                                        <PaxSegmentRefID>SEG6</PaxSegmentRefID>
                                        <Price>
                                            <BaseAmount CurCode="NUC">5.40</BaseAmount>
                                        </Price>
                                        <PriceClassRefID>PC1</PriceClassRefID>
                                        <RBD>
                                            <RBD_Code>X</RBD_Code>
                                        </RBD>
                                    </FareComponent>
                                    <FarePriceType>
                                        <FarePriceTypeCode>Filed</FarePriceTypeCode>
                                        <Price>
                                            <BaseAmount CurCode="UAH">308.00</BaseAmount>
                                            <CurConversion>
                                                <Amount CurCode="NUC">10.80</Amount>
                                                <ConversionRate>1.000000</ConversionRate>
                                                <LocalAmount CurCode="UAH">308.00</LocalAmount>
                                            </CurConversion>
                                        </Price>
                                    </FarePriceType>
                                </FareDetail>
                                <OfferItemID>198cafac-9b49-443e-8d69-65bbadbb3e89-PAX1</OfferItemID>
                                <Price>
                                    <BaseAmount CurCode="UAH">308.00</BaseAmount>
                                    <TaxSummary>
                                        <Tax>
                                            <Amount CurCode="UAH">51.00</Amount>
                                            <Country>
                                                <CountryCode>UA</CountryCode>
                                            </Country>
                                            <TaxCode>SE</TaxCode>
                                        </Tax>
                                        <TotalTaxAmount CurCode="UAH">51.00</TotalTaxAmount>
                                    </TaxSummary>
                                    <TotalAmount CurCode="UAH">359.00</TotalAmount>
                                </Price>
                                <Service>
                                    <PaxRefID>PAX1</PaxRefID>
                                    <ServiceAssociations>
                                        <PaxJourneyRefID>FL1</PaxJourneyRefID>
                                        <PaxJourneyRefID>FL4</PaxJourneyRefID>
                                    </ServiceAssociations>
                                    <ServiceID>PAX1_FL1_FL4</ServiceID>
                                </Service>
                                <Service>
                                    <PaxRefID>PAX1</PaxRefID>
                                    <ServiceAssociations>
                                        <ServiceDefinitionRef>
                                            <BaggageFlightAssociations>
                                                <PaxSegmentRefID>SEG1</PaxSegmentRefID>
                                                <PaxSegmentRefID>SEG2</PaxSegmentRefID>
                                            </BaggageFlightAssociations>
                                            <ServiceDefinitionRefID>InclBag17</ServiceDefinitionRefID>
                                        </ServiceDefinitionRef>
                                    </ServiceAssociations>
                                    <ServiceID>PAX1_SEG1_SEG2</ServiceID>
                                </Service>
                                <Service>
                                    <PaxRefID>PAX1</PaxRefID>
                                    <ServiceAssociations>
                                        <ServiceDefinitionRef>
                                            <BaggageFlightAssociations>
                                                <PaxSegmentRefID>SEG3</PaxSegmentRefID>
                                                <PaxSegmentRefID>SEG6</PaxSegmentRefID>
                                            </BaggageFlightAssociations>
                                            <ServiceDefinitionRefID>InclBag18</ServiceDefinitionRefID>
                                        </ServiceDefinitionRef>
                                    </ServiceAssociations>
                                    <ServiceID>PAX1_SEG3_SEG6</ServiceID>
                                </Service>
                            </OfferItem>
                            <OfferItem>
                                <FareDetail>
                                    <FareComponent>
                                        <FareBasisCode>X002SSU2</FareBasisCode>
                                        <PaxSegmentRefID>SEG1</PaxSegmentRefID>
                                        <PaxSegmentRefID>SEG2</PaxSegmentRefID>
                                        <Price>
                                            <BaseAmount CurCode="NUC">54.00</BaseAmount>
                                        </Price>
                                        <PriceClassRefID>PC1</PriceClassRefID>
                                        <RBD>
                                            <RBD_Code>X</RBD_Code>
                                        </RBD>
                                    </FareComponent>
                                    <FareComponent>
                                        <FareBasisCode>X002SSU2</FareBasisCode>
                                        <PaxSegmentRefID>SEG3</PaxSegmentRefID>
                                        <PaxSegmentRefID>SEG6</PaxSegmentRefID>
                                        <Price>
                                            <BaseAmount CurCode="NUC">54.00</BaseAmount>
                                        </Price>
                                        <PriceClassRefID>PC1</PriceClassRefID>
                                        <RBD>
                                            <RBD_Code>X</RBD_Code>
                                        </RBD>
                                    </FareComponent>
                                    <FarePriceType>
                                        <FarePriceTypeCode>Filed</FarePriceTypeCode>
                                        <Price>
                                            <BaseAmount CurCode="UAH">6034.00</BaseAmount>
                                            <CurConversion>
                                                <Amount CurCode="NUC">108.00</Amount>
                                                <ConversionRate>1.000000</ConversionRate>
                                                <LocalAmount CurCode="UAH">6034.00</LocalAmount>
                                            </CurConversion>
                                        </Price>
                                    </FarePriceType>
                                </FareDetail>
                                <OfferItemID>198cafac-9b49-443e-8d69-65bbadbb3e89-PAX2</OfferItemID>
                                <Price>
                                    <BaseAmount CurCode="UAH">3017.00</BaseAmount>
                                    <TaxSummary>
                                        <Tax>
                                            <Amount CurCode="UAH">1676.00</Amount>
                                            <Country>
                                                <CountryCode>YQ</CountryCode>
                                            </Country>
                                            <TaxCode>AD</TaxCode>
                                        </Tax>
                                        <Tax>
                                            <Amount CurCode="UAH">205.00</Amount>
                                            <Country>
                                                <CountryCode>UA</CountryCode>
                                            </Country>
                                            <TaxCode>SE</TaxCode>
                                        </Tax>
                                        <Tax>
                                            <Amount CurCode="UAH">84.00</Amount>
                                            <Country>
                                                <CountryCode>UD</CountryCode>
                                            </Country>
                                            <TaxCode>DP</TaxCode>
                                        </Tax>
                                        <Tax>
                                            <Amount CurCode="UAH">531.00</Amount>
                                            <Country>
                                                <CountryCode>YK</CountryCode>
                                            </Country>
                                            <TaxCode>AE</TaxCode>
                                        </Tax>
                                        <Tax>
                                            <Amount CurCode="UAH">8.00</Amount>
                                            <Country>
                                                <CountryCode>ND</CountryCode>
                                            </Country>
                                            <TaxCode>AD</TaxCode>
                                        </Tax>
                                        <Tax>
                                            <Amount CurCode="UAH">443.00</Amount>
                                            <Country>
                                                <CountryCode>XW</CountryCode>
                                            </Country>
                                            <TaxCode>AE</TaxCode>
                                        </Tax>
                                        <TotalTaxAmount CurCode="UAH">2947.00</TotalTaxAmount>
                                    </TaxSummary>
                                    <TotalAmount CurCode="UAH">5964.00</TotalAmount>
                                </Price>
                                <Service>
                                    <PaxRefID>PAX2</PaxRefID>
                                    <ServiceAssociations>
                                        <PaxJourneyRefID>FL1</PaxJourneyRefID>
                                        <PaxJourneyRefID>FL4</PaxJourneyRefID>
                                    </ServiceAssociations>
                                    <ServiceID>PAX2_FL1_FL4</ServiceID>
                                </Service>
                                <Service>
                                    <PaxRefID>PAX2</PaxRefID>
                                    <ServiceAssociations>
                                        <ServiceDefinitionRef>
                                            <BaggageFlightAssociations>
                                                <PaxSegmentRefID>SEG1</PaxSegmentRefID>
                                                <PaxSegmentRefID>SEG2</PaxSegmentRefID>
                                            </BaggageFlightAssociations>
                                            <ServiceDefinitionRefID>InclBag19</ServiceDefinitionRefID>
                                        </ServiceDefinitionRef>
                                    </ServiceAssociations>
                                    <ServiceID>PAX2_SEG1_SEG2</ServiceID>
                                </Service>
                                <Service>
                                    <PaxRefID>PAX2</PaxRefID>
                                    <ServiceAssociations>
                                        <ServiceDefinitionRef>
                                            <BaggageFlightAssociations>
                                                <PaxSegmentRefID>SEG3</PaxSegmentRefID>
                                                <PaxSegmentRefID>SEG6</PaxSegmentRefID>
                                            </BaggageFlightAssociations>
                                            <ServiceDefinitionRefID>InclBag20</ServiceDefinitionRefID>
                                        </ServiceDefinitionRef>
                                    </ServiceAssociations>
                                    <ServiceID>PAX2_SEG3_SEG6</ServiceID>
                                </Service>
                            </OfferItem>
                            <OfferItem>
                                <FareDetail>
                                    <FareComponent>
                                        <FareBasisCode>X002SSU2</FareBasisCode>
                                        <PaxSegmentRefID>SEG1</PaxSegmentRefID>
                                        <PaxSegmentRefID>SEG2</PaxSegmentRefID>
                                        <Price>
                                            <BaseAmount CurCode="NUC">54.00</BaseAmount>
                                        </Price>
                                        <PriceClassRefID>PC1</PriceClassRefID>
                                        <RBD>
                                            <RBD_Code>X</RBD_Code>
                                        </RBD>
                                    </FareComponent>
                                    <FareComponent>
                                        <FareBasisCode>X002SSU2</FareBasisCode>
                                        <PaxSegmentRefID>SEG3</PaxSegmentRefID>
                                        <PaxSegmentRefID>SEG6</PaxSegmentRefID>
                                        <Price>
                                            <BaseAmount CurCode="NUC">54.00</BaseAmount>
                                        </Price>
                                        <PriceClassRefID>PC1</PriceClassRefID>
                                        <RBD>
                                            <RBD_Code>X</RBD_Code>
                                        </RBD>
                                    </FareComponent>
                                    <FarePriceType>
                                        <FarePriceTypeCode>Filed</FarePriceTypeCode>
                                        <Price>
                                            <BaseAmount CurCode="UAH">6034.00</BaseAmount>
                                            <CurConversion>
                                                <Amount CurCode="NUC">108.00</Amount>
                                                <ConversionRate>1.000000</ConversionRate>
                                                <LocalAmount CurCode="UAH">6034.00</LocalAmount>
                                            </CurConversion>
                                        </Price>
                                    </FarePriceType>
                                </FareDetail>
                                <OfferItemID>198cafac-9b49-443e-8d69-65bbadbb3e89-PAX3</OfferItemID>
                                <Price>
                                    <BaseAmount CurCode="UAH">3017.00</BaseAmount>
                                    <TaxSummary>
                                        <Tax>
                                            <Amount CurCode="UAH">1676.00</Amount>
                                            <Country>
                                                <CountryCode>YQ</CountryCode>
                                            </Country>
                                            <TaxCode>AD</TaxCode>
                                        </Tax>
                                        <Tax>
                                            <Amount CurCode="UAH">205.00</Amount>
                                            <Country>
                                                <CountryCode>UA</CountryCode>
                                            </Country>
                                            <TaxCode>SE</TaxCode>
                                        </Tax>
                                        <Tax>
                                            <Amount CurCode="UAH">84.00</Amount>
                                            <Country>
                                                <CountryCode>UD</CountryCode>
                                            </Country>
                                            <TaxCode>DP</TaxCode>
                                        </Tax>
                                        <Tax>
                                            <Amount CurCode="UAH">531.00</Amount>
                                            <Country>
                                                <CountryCode>YK</CountryCode>
                                            </Country>
                                            <TaxCode>AE</TaxCode>
                                        </Tax>
                                        <Tax>
                                            <Amount CurCode="UAH">8.00</Amount>
                                            <Country>
                                                <CountryCode>ND</CountryCode>
                                            </Country>
                                            <TaxCode>AD</TaxCode>
                                        </Tax>
                                        <Tax>
                                            <Amount CurCode="UAH">443.00</Amount>
                                            <Country>
                                                <CountryCode>XW</CountryCode>
                                            </Country>
                                            <TaxCode>AE</TaxCode>
                                        </Tax>
                                        <TotalTaxAmount CurCode="UAH">2947.00</TotalTaxAmount>
                                    </TaxSummary>
                                    <TotalAmount CurCode="UAH">5964.00</TotalAmount>
                                </Price>
                                <Service>
                                    <PaxRefID>PAX3</PaxRefID>
                                    <ServiceAssociations>
                                        <PaxJourneyRefID>FL1</PaxJourneyRefID>
                                        <PaxJourneyRefID>FL4</PaxJourneyRefID>
                                    </ServiceAssociations>
                                    <ServiceID>PAX3_FL1_FL4</ServiceID>
                                </Service>
                                <Service>
                                    <PaxRefID>PAX3</PaxRefID>
                                    <ServiceAssociations>
                                        <ServiceDefinitionRef>
                                            <BaggageFlightAssociations>
                                                <PaxSegmentRefID>SEG1</PaxSegmentRefID>
                                                <PaxSegmentRefID>SEG2</PaxSegmentRefID>
                                            </BaggageFlightAssociations>
                                            <ServiceDefinitionRefID>InclBag21</ServiceDefinitionRefID>
                                        </ServiceDefinitionRef>
                                    </ServiceAssociations>
                                    <ServiceID>PAX3_SEG1_SEG2</ServiceID>
                                </Service>
                                <Service>
                                    <PaxRefID>PAX3</PaxRefID>
                                    <ServiceAssociations>
                                        <ServiceDefinitionRef>
                                            <BaggageFlightAssociations>
                                                <PaxSegmentRefID>SEG3</PaxSegmentRefID>
                                                <PaxSegmentRefID>SEG6</PaxSegmentRefID>
                                            </BaggageFlightAssociations>
                                            <ServiceDefinitionRefID>InclBag22</ServiceDefinitionRefID>
                                        </ServiceDefinitionRef>
                                    </ServiceAssociations>
                                    <ServiceID>PAX3_SEG3_SEG6</ServiceID>
                                </Service>
                            </OfferItem>
                            <OfferItem>
                                <FareDetail>
                                    <FareComponent>
                                        <FareBasisCode>X002SSU2</FareBasisCode>
                                        <PaxSegmentRefID>SEG1</PaxSegmentRefID>
                                        <PaxSegmentRefID>SEG2</PaxSegmentRefID>
                                        <Price>
                                            <BaseAmount CurCode="NUC">40.50</BaseAmount>
                                        </Price>
                                        <PriceClassRefID>PC1</PriceClassRefID>
                                        <RBD>
                                            <RBD_Code>X</RBD_Code>
                                        </RBD>
                                    </FareComponent>
                                    <FareComponent>
                                        <FareBasisCode>X002SSU2</FareBasisCode>
                                        <PaxSegmentRefID>SEG3</PaxSegmentRefID>
                                        <PaxSegmentRefID>SEG6</PaxSegmentRefID>
                                        <Price>
                                            <BaseAmount CurCode="NUC">40.50</BaseAmount>
                                        </Price>
                                        <PriceClassRefID>PC1</PriceClassRefID>
                                        <RBD>
                                            <RBD_Code>X</RBD_Code>
                                        </RBD>
                                    </FareComponent>
                                    <FarePriceType>
                                        <FarePriceTypeCode>Filed</FarePriceTypeCode>
                                        <Price>
                                            <BaseAmount CurCode="UAH">2263.00</BaseAmount>
                                            <CurConversion>
                                                <Amount CurCode="NUC">81.00</Amount>
                                                <ConversionRate>1.000000</ConversionRate>
                                                <LocalAmount CurCode="UAH">2263.00</LocalAmount>
                                            </CurConversion>
                                        </Price>
                                    </FarePriceType>
                                </FareDetail>
                                <OfferItemID>198cafac-9b49-443e-8d69-65bbadbb3e89-PAX4</OfferItemID>
                                <Price>
                                    <BaseAmount CurCode="UAH">2263.00</BaseAmount>
                                    <TaxSummary>
                                        <Tax>
                                            <Amount CurCode="UAH">1676.00</Amount>
                                            <Country>
                                                <CountryCode>YQ</CountryCode>
                                            </Country>
                                            <TaxCode>AD</TaxCode>
                                        </Tax>
                                        <Tax>
                                            <Amount CurCode="UAH">205.00</Amount>
                                            <Country>
                                                <CountryCode>UA</CountryCode>
                                            </Country>
                                            <TaxCode>SE</TaxCode>
                                        </Tax>
                                        <Tax>
                                            <Amount CurCode="UAH">84.00</Amount>
                                            <Country>
                                                <CountryCode>UD</CountryCode>
                                            </Country>
                                            <TaxCode>DP</TaxCode>
                                        </Tax>
                                        <Tax>
                                            <Amount CurCode="UAH">531.00</Amount>
                                            <Country>
                                                <CountryCode>YK</CountryCode>
                                            </Country>
                                            <TaxCode>AE</TaxCode>
                                        </Tax>
                                        <Tax>
                                            <Amount CurCode="UAH">8.00</Amount>
                                            <Country>
                                                <CountryCode>ND</CountryCode>
                                            </Country>
                                            <TaxCode>AD</TaxCode>
                                        </Tax>
                                        <Tax>
                                            <Amount CurCode="UAH">443.00</Amount>
                                            <Country>
                                                <CountryCode>XW</CountryCode>
                                            </Country>
                                            <TaxCode>AE</TaxCode>
                                        </Tax>
                                        <TotalTaxAmount CurCode="UAH">2947.00</TotalTaxAmount>
                                    </TaxSummary>
                                    <TotalAmount CurCode="UAH">5210.00</TotalAmount>
                                </Price>
                                <Service>
                                    <PaxRefID>PAX4</PaxRefID>
                                    <ServiceAssociations>
                                        <PaxJourneyRefID>FL1</PaxJourneyRefID>
                                        <PaxJourneyRefID>FL4</PaxJourneyRefID>
                                    </ServiceAssociations>
                                    <ServiceID>PAX4_FL1_FL4</ServiceID>
                                </Service>
                                <Service>
                                    <PaxRefID>PAX4</PaxRefID>
                                    <ServiceAssociations>
                                        <ServiceDefinitionRef>
                                            <BaggageFlightAssociations>
                                                <PaxSegmentRefID>SEG1</PaxSegmentRefID>
                                                <PaxSegmentRefID>SEG2</PaxSegmentRefID>
                                            </BaggageFlightAssociations>
                                            <ServiceDefinitionRefID>InclBag23</ServiceDefinitionRefID>
                                        </ServiceDefinitionRef>
                                    </ServiceAssociations>
                                    <ServiceID>PAX4_SEG1_SEG2</ServiceID>
                                </Service>
                                <Service>
                                    <PaxRefID>PAX4</PaxRefID>
                                    <ServiceAssociations>
                                        <ServiceDefinitionRef>
                                            <BaggageFlightAssociations>
                                                <PaxSegmentRefID>SEG3</PaxSegmentRefID>
                                                <PaxSegmentRefID>SEG6</PaxSegmentRefID>
                                            </BaggageFlightAssociations>
                                            <ServiceDefinitionRefID>InclBag24</ServiceDefinitionRefID>
                                        </ServiceDefinitionRef>
                                    </ServiceAssociations>
                                    <ServiceID>PAX4_SEG3_SEG6</ServiceID>
                                </Service>
                            </OfferItem>
                            <OwnerCode>PS</OwnerCode>
                            <PTC_OfferParameters>
                                <PricedPaxNumber>2</PricedPaxNumber>
                                <PTC_PricedCode>ADT</PTC_PricedCode>
                                <PTC_RequestedCode>ADT</PTC_RequestedCode>
                                <RequestedPaxNumber>2</RequestedPaxNumber>
                            </PTC_OfferParameters>
                            <PTC_OfferParameters>
                                <PricedPaxNumber>1</PricedPaxNumber>
                                <PTC_PricedCode>INF</PTC_PricedCode>
                                <PTC_RequestedCode>INF</PTC_RequestedCode>
                                <RequestedPaxNumber>1</RequestedPaxNumber>
                            </PTC_OfferParameters>
                            <PTC_OfferParameters>
                                <PricedPaxNumber>1</PricedPaxNumber>
                                <PTC_PricedCode>CHD</PTC_PricedCode>
                                <PTC_RequestedCode>CHD</PTC_RequestedCode>
                                <RequestedPaxNumber>1</RequestedPaxNumber>
                            </PTC_OfferParameters>
                            <TotalPrice>
                                <TotalAmount CurCode="UAH">17497.00</TotalAmount>
                            </TotalPrice>
                        </Offer>
                        <Offer>
                            <JourneyOverview>
                                <JourneyPriceClass>
                                    <PaxJourneyRefID>FL5</PaxJourneyRefID>
                                </JourneyPriceClass>
                                <JourneyPriceClass>
                                    <PaxJourneyRefID>FL2</PaxJourneyRefID>
                                </JourneyPriceClass>
                            </JourneyOverview>
                            <OfferExpirationTimeLimitDateTime>2021-04-28T07:01:00.000</OfferExpirationTimeLimitDateTime>
                            <OfferID>8cf484ca-37de-4732-88e1-7efcffee78af</OfferID>
                            <OfferItem>
                                <FareDetail>
                                    <FareComponent>
                                        <FareBasisCode>X002SSU2</FareBasisCode>
                                        <PaxSegmentRefID>SEG7</PaxSegmentRefID>
                                        <PaxSegmentRefID>SEG8</PaxSegmentRefID>
                                        <Price>
                                            <BaseAmount CurCode="NUC">5.40</BaseAmount>
                                        </Price>
                                        <PriceClassRefID>PC1</PriceClassRefID>
                                        <RBD>
                                            <RBD_Code>X</RBD_Code>
                                        </RBD>
                                    </FareComponent>
                                    <FareComponent>
                                        <FareBasisCode>X002SSU2</FareBasisCode>
                                        <PaxSegmentRefID>SEG3</PaxSegmentRefID>
                                        <PaxSegmentRefID>SEG4</PaxSegmentRefID>
                                        <Price>
                                            <BaseAmount CurCode="NUC">5.40</BaseAmount>
                                        </Price>
                                        <PriceClassRefID>PC1</PriceClassRefID>
                                        <RBD>
                                            <RBD_Code>X</RBD_Code>
                                        </RBD>
                                    </FareComponent>
                                    <FarePriceType>
                                        <FarePriceTypeCode>Filed</FarePriceTypeCode>
                                        <Price>
                                            <BaseAmount CurCode="UAH">308.00</BaseAmount>
                                            <CurConversion>
                                                <Amount CurCode="NUC">10.80</Amount>
                                                <ConversionRate>1.000000</ConversionRate>
                                                <LocalAmount CurCode="UAH">308.00</LocalAmount>
                                            </CurConversion>
                                        </Price>
                                    </FarePriceType>
                                </FareDetail>
                                <OfferItemID>8cf484ca-37de-4732-88e1-7efcffee78af-PAX1</OfferItemID>
                                <Price>
                                    <BaseAmount CurCode="UAH">308.00</BaseAmount>
                                    <TaxSummary>
                                        <Tax>
                                            <Amount CurCode="UAH">51.00</Amount>
                                            <Country>
                                                <CountryCode>UA</CountryCode>
                                            </Country>
                                            <TaxCode>SE</TaxCode>
                                        </Tax>
                                        <TotalTaxAmount CurCode="UAH">51.00</TotalTaxAmount>
                                    </TaxSummary>
                                    <TotalAmount CurCode="UAH">359.00</TotalAmount>
                                </Price>
                                <Service>
                                    <PaxRefID>PAX1</PaxRefID>
                                    <ServiceAssociations>
                                        <PaxJourneyRefID>FL5</PaxJourneyRefID>
                                        <PaxJourneyRefID>FL2</PaxJourneyRefID>
                                    </ServiceAssociations>
                                    <ServiceID>PAX1_FL5_FL2</ServiceID>
                                </Service>
                                <Service>
                                    <PaxRefID>PAX1</PaxRefID>
                                    <ServiceAssociations>
                                        <ServiceDefinitionRef>
                                            <BaggageFlightAssociations>
                                                <PaxSegmentRefID>SEG7</PaxSegmentRefID>
                                                <PaxSegmentRefID>SEG8</PaxSegmentRefID>
                                            </BaggageFlightAssociations>
                                            <ServiceDefinitionRefID>InclBag25</ServiceDefinitionRefID>
                                        </ServiceDefinitionRef>
                                    </ServiceAssociations>
                                    <ServiceID>PAX1_SEG7_SEG8</ServiceID>
                                </Service>
                                <Service>
                                    <PaxRefID>PAX1</PaxRefID>
                                    <ServiceAssociations>
                                        <ServiceDefinitionRef>
                                            <BaggageFlightAssociations>
                                                <PaxSegmentRefID>SEG3</PaxSegmentRefID>
                                                <PaxSegmentRefID>SEG4</PaxSegmentRefID>
                                            </BaggageFlightAssociations>
                                            <ServiceDefinitionRefID>InclBag26</ServiceDefinitionRefID>
                                        </ServiceDefinitionRef>
                                    </ServiceAssociations>
                                    <ServiceID>PAX1_SEG3_SEG4</ServiceID>
                                </Service>
                            </OfferItem>
                            <OfferItem>
                                <FareDetail>
                                    <FareComponent>
                                        <FareBasisCode>X002SSU2</FareBasisCode>
                                        <PaxSegmentRefID>SEG7</PaxSegmentRefID>
                                        <PaxSegmentRefID>SEG8</PaxSegmentRefID>
                                        <Price>
                                            <BaseAmount CurCode="NUC">54.00</BaseAmount>
                                        </Price>
                                        <PriceClassRefID>PC1</PriceClassRefID>
                                        <RBD>
                                            <RBD_Code>X</RBD_Code>
                                        </RBD>
                                    </FareComponent>
                                    <FareComponent>
                                        <FareBasisCode>X002SSU2</FareBasisCode>
                                        <PaxSegmentRefID>SEG3</PaxSegmentRefID>
                                        <PaxSegmentRefID>SEG4</PaxSegmentRefID>
                                        <Price>
                                            <BaseAmount CurCode="NUC">54.00</BaseAmount>
                                        </Price>
                                        <PriceClassRefID>PC1</PriceClassRefID>
                                        <RBD>
                                            <RBD_Code>X</RBD_Code>
                                        </RBD>
                                    </FareComponent>
                                    <FarePriceType>
                                        <FarePriceTypeCode>Filed</FarePriceTypeCode>
                                        <Price>
                                            <BaseAmount CurCode="UAH">6034.00</BaseAmount>
                                            <CurConversion>
                                                <Amount CurCode="NUC">108.00</Amount>
                                                <ConversionRate>1.000000</ConversionRate>
                                                <LocalAmount CurCode="UAH">6034.00</LocalAmount>
                                            </CurConversion>
                                        </Price>
                                    </FarePriceType>
                                </FareDetail>
                                <OfferItemID>8cf484ca-37de-4732-88e1-7efcffee78af-PAX2</OfferItemID>
                                <Price>
                                    <BaseAmount CurCode="UAH">3017.00</BaseAmount>
                                    <TaxSummary>
                                        <Tax>
                                            <Amount CurCode="UAH">1676.00</Amount>
                                            <Country>
                                                <CountryCode>YQ</CountryCode>
                                            </Country>
                                            <TaxCode>AD</TaxCode>
                                        </Tax>
                                        <Tax>
                                            <Amount CurCode="UAH">205.00</Amount>
                                            <Country>
                                                <CountryCode>UA</CountryCode>
                                            </Country>
                                            <TaxCode>SE</TaxCode>
                                        </Tax>
                                        <Tax>
                                            <Amount CurCode="UAH">84.00</Amount>
                                            <Country>
                                                <CountryCode>UD</CountryCode>
                                            </Country>
                                            <TaxCode>DP</TaxCode>
                                        </Tax>
                                        <Tax>
                                            <Amount CurCode="UAH">531.00</Amount>
                                            <Country>
                                                <CountryCode>YK</CountryCode>
                                            </Country>
                                            <TaxCode>AE</TaxCode>
                                        </Tax>
                                        <Tax>
                                            <Amount CurCode="UAH">8.00</Amount>
                                            <Country>
                                                <CountryCode>ND</CountryCode>
                                            </Country>
                                            <TaxCode>AD</TaxCode>
                                        </Tax>
                                        <Tax>
                                            <Amount CurCode="UAH">443.00</Amount>
                                            <Country>
                                                <CountryCode>XW</CountryCode>
                                            </Country>
                                            <TaxCode>AE</TaxCode>
                                        </Tax>
                                        <TotalTaxAmount CurCode="UAH">2947.00</TotalTaxAmount>
                                    </TaxSummary>
                                    <TotalAmount CurCode="UAH">5964.00</TotalAmount>
                                </Price>
                                <Service>
                                    <PaxRefID>PAX2</PaxRefID>
                                    <ServiceAssociations>
                                        <PaxJourneyRefID>FL5</PaxJourneyRefID>
                                        <PaxJourneyRefID>FL2</PaxJourneyRefID>
                                    </ServiceAssociations>
                                    <ServiceID>PAX2_FL5_FL2</ServiceID>
                                </Service>
                                <Service>
                                    <PaxRefID>PAX2</PaxRefID>
                                    <ServiceAssociations>
                                        <ServiceDefinitionRef>
                                            <BaggageFlightAssociations>
                                                <PaxSegmentRefID>SEG7</PaxSegmentRefID>
                                                <PaxSegmentRefID>SEG8</PaxSegmentRefID>
                                            </BaggageFlightAssociations>
                                            <ServiceDefinitionRefID>InclBag27</ServiceDefinitionRefID>
                                        </ServiceDefinitionRef>
                                    </ServiceAssociations>
                                    <ServiceID>PAX2_SEG7_SEG8</ServiceID>
                                </Service>
                                <Service>
                                    <PaxRefID>PAX2</PaxRefID>
                                    <ServiceAssociations>
                                        <ServiceDefinitionRef>
                                            <BaggageFlightAssociations>
                                                <PaxSegmentRefID>SEG3</PaxSegmentRefID>
                                                <PaxSegmentRefID>SEG4</PaxSegmentRefID>
                                            </BaggageFlightAssociations>
                                            <ServiceDefinitionRefID>InclBag28</ServiceDefinitionRefID>
                                        </ServiceDefinitionRef>
                                    </ServiceAssociations>
                                    <ServiceID>PAX2_SEG3_SEG4</ServiceID>
                                </Service>
                            </OfferItem>
                            <OfferItem>
                                <FareDetail>
                                    <FareComponent>
                                        <FareBasisCode>X002SSU2</FareBasisCode>
                                        <PaxSegmentRefID>SEG7</PaxSegmentRefID>
                                        <PaxSegmentRefID>SEG8</PaxSegmentRefID>
                                        <Price>
                                            <BaseAmount CurCode="NUC">54.00</BaseAmount>
                                        </Price>
                                        <PriceClassRefID>PC1</PriceClassRefID>
                                        <RBD>
                                            <RBD_Code>X</RBD_Code>
                                        </RBD>
                                    </FareComponent>
                                    <FareComponent>
                                        <FareBasisCode>X002SSU2</FareBasisCode>
                                        <PaxSegmentRefID>SEG3</PaxSegmentRefID>
                                        <PaxSegmentRefID>SEG4</PaxSegmentRefID>
                                        <Price>
                                            <BaseAmount CurCode="NUC">54.00</BaseAmount>
                                        </Price>
                                        <PriceClassRefID>PC1</PriceClassRefID>
                                        <RBD>
                                            <RBD_Code>X</RBD_Code>
                                        </RBD>
                                    </FareComponent>
                                    <FarePriceType>
                                        <FarePriceTypeCode>Filed</FarePriceTypeCode>
                                        <Price>
                                            <BaseAmount CurCode="UAH">6034.00</BaseAmount>
                                            <CurConversion>
                                                <Amount CurCode="NUC">108.00</Amount>
                                                <ConversionRate>1.000000</ConversionRate>
                                                <LocalAmount CurCode="UAH">6034.00</LocalAmount>
                                            </CurConversion>
                                        </Price>
                                    </FarePriceType>
                                </FareDetail>
                                <OfferItemID>8cf484ca-37de-4732-88e1-7efcffee78af-PAX3</OfferItemID>
                                <Price>
                                    <BaseAmount CurCode="UAH">3017.00</BaseAmount>
                                    <TaxSummary>
                                        <Tax>
                                            <Amount CurCode="UAH">1676.00</Amount>
                                            <Country>
                                                <CountryCode>YQ</CountryCode>
                                            </Country>
                                            <TaxCode>AD</TaxCode>
                                        </Tax>
                                        <Tax>
                                            <Amount CurCode="UAH">205.00</Amount>
                                            <Country>
                                                <CountryCode>UA</CountryCode>
                                            </Country>
                                            <TaxCode>SE</TaxCode>
                                        </Tax>
                                        <Tax>
                                            <Amount CurCode="UAH">84.00</Amount>
                                            <Country>
                                                <CountryCode>UD</CountryCode>
                                            </Country>
                                            <TaxCode>DP</TaxCode>
                                        </Tax>
                                        <Tax>
                                            <Amount CurCode="UAH">531.00</Amount>
                                            <Country>
                                                <CountryCode>YK</CountryCode>
                                            </Country>
                                            <TaxCode>AE</TaxCode>
                                        </Tax>
                                        <Tax>
                                            <Amount CurCode="UAH">8.00</Amount>
                                            <Country>
                                                <CountryCode>ND</CountryCode>
                                            </Country>
                                            <TaxCode>AD</TaxCode>
                                        </Tax>
                                        <Tax>
                                            <Amount CurCode="UAH">443.00</Amount>
                                            <Country>
                                                <CountryCode>XW</CountryCode>
                                            </Country>
                                            <TaxCode>AE</TaxCode>
                                        </Tax>
                                        <TotalTaxAmount CurCode="UAH">2947.00</TotalTaxAmount>
                                    </TaxSummary>
                                    <TotalAmount CurCode="UAH">5964.00</TotalAmount>
                                </Price>
                                <Service>
                                    <PaxRefID>PAX3</PaxRefID>
                                    <ServiceAssociations>
                                        <PaxJourneyRefID>FL5</PaxJourneyRefID>
                                        <PaxJourneyRefID>FL2</PaxJourneyRefID>
                                    </ServiceAssociations>
                                    <ServiceID>PAX3_FL5_FL2</ServiceID>
                                </Service>
                                <Service>
                                    <PaxRefID>PAX3</PaxRefID>
                                    <ServiceAssociations>
                                        <ServiceDefinitionRef>
                                            <BaggageFlightAssociations>
                                                <PaxSegmentRefID>SEG7</PaxSegmentRefID>
                                                <PaxSegmentRefID>SEG8</PaxSegmentRefID>
                                            </BaggageFlightAssociations>
                                            <ServiceDefinitionRefID>InclBag29</ServiceDefinitionRefID>
                                        </ServiceDefinitionRef>
                                    </ServiceAssociations>
                                    <ServiceID>PAX3_SEG7_SEG8</ServiceID>
                                </Service>
                                <Service>
                                    <PaxRefID>PAX3</PaxRefID>
                                    <ServiceAssociations>
                                        <ServiceDefinitionRef>
                                            <BaggageFlightAssociations>
                                                <PaxSegmentRefID>SEG3</PaxSegmentRefID>
                                                <PaxSegmentRefID>SEG4</PaxSegmentRefID>
                                            </BaggageFlightAssociations>
                                            <ServiceDefinitionRefID>InclBag30</ServiceDefinitionRefID>
                                        </ServiceDefinitionRef>
                                    </ServiceAssociations>
                                    <ServiceID>PAX3_SEG3_SEG4</ServiceID>
                                </Service>
                            </OfferItem>
                            <OfferItem>
                                <FareDetail>
                                    <FareComponent>
                                        <FareBasisCode>X002SSU2</FareBasisCode>
                                        <PaxSegmentRefID>SEG7</PaxSegmentRefID>
                                        <PaxSegmentRefID>SEG8</PaxSegmentRefID>
                                        <Price>
                                            <BaseAmount CurCode="NUC">40.50</BaseAmount>
                                        </Price>
                                        <PriceClassRefID>PC1</PriceClassRefID>
                                        <RBD>
                                            <RBD_Code>X</RBD_Code>
                                        </RBD>
                                    </FareComponent>
                                    <FareComponent>
                                        <FareBasisCode>X002SSU2</FareBasisCode>
                                        <PaxSegmentRefID>SEG3</PaxSegmentRefID>
                                        <PaxSegmentRefID>SEG4</PaxSegmentRefID>
                                        <Price>
                                            <BaseAmount CurCode="NUC">40.50</BaseAmount>
                                        </Price>
                                        <PriceClassRefID>PC1</PriceClassRefID>
                                        <RBD>
                                            <RBD_Code>X</RBD_Code>
                                        </RBD>
                                    </FareComponent>
                                    <FarePriceType>
                                        <FarePriceTypeCode>Filed</FarePriceTypeCode>
                                        <Price>
                                            <BaseAmount CurCode="UAH">2263.00</BaseAmount>
                                            <CurConversion>
                                                <Amount CurCode="NUC">81.00</Amount>
                                                <ConversionRate>1.000000</ConversionRate>
                                                <LocalAmount CurCode="UAH">2263.00</LocalAmount>
                                            </CurConversion>
                                        </Price>
                                    </FarePriceType>
                                </FareDetail>
                                <OfferItemID>8cf484ca-37de-4732-88e1-7efcffee78af-PAX4</OfferItemID>
                                <Price>
                                    <BaseAmount CurCode="UAH">2263.00</BaseAmount>
                                    <TaxSummary>
                                        <Tax>
                                            <Amount CurCode="UAH">1676.00</Amount>
                                            <Country>
                                                <CountryCode>YQ</CountryCode>
                                            </Country>
                                            <TaxCode>AD</TaxCode>
                                        </Tax>
                                        <Tax>
                                            <Amount CurCode="UAH">205.00</Amount>
                                            <Country>
                                                <CountryCode>UA</CountryCode>
                                            </Country>
                                            <TaxCode>SE</TaxCode>
                                        </Tax>
                                        <Tax>
                                            <Amount CurCode="UAH">84.00</Amount>
                                            <Country>
                                                <CountryCode>UD</CountryCode>
                                            </Country>
                                            <TaxCode>DP</TaxCode>
                                        </Tax>
                                        <Tax>
                                            <Amount CurCode="UAH">531.00</Amount>
                                            <Country>
                                                <CountryCode>YK</CountryCode>
                                            </Country>
                                            <TaxCode>AE</TaxCode>
                                        </Tax>
                                        <Tax>
                                            <Amount CurCode="UAH">8.00</Amount>
                                            <Country>
                                                <CountryCode>ND</CountryCode>
                                            </Country>
                                            <TaxCode>AD</TaxCode>
                                        </Tax>
                                        <Tax>
                                            <Amount CurCode="UAH">443.00</Amount>
                                            <Country>
                                                <CountryCode>XW</CountryCode>
                                            </Country>
                                            <TaxCode>AE</TaxCode>
                                        </Tax>
                                        <TotalTaxAmount CurCode="UAH">2947.00</TotalTaxAmount>
                                    </TaxSummary>
                                    <TotalAmount CurCode="UAH">5210.00</TotalAmount>
                                </Price>
                                <Service>
                                    <PaxRefID>PAX4</PaxRefID>
                                    <ServiceAssociations>
                                        <PaxJourneyRefID>FL5</PaxJourneyRefID>
                                        <PaxJourneyRefID>FL2</PaxJourneyRefID>
                                    </ServiceAssociations>
                                    <ServiceID>PAX4_FL5_FL2</ServiceID>
                                </Service>
                                <Service>
                                    <PaxRefID>PAX4</PaxRefID>
                                    <ServiceAssociations>
                                        <ServiceDefinitionRef>
                                            <BaggageFlightAssociations>
                                                <PaxSegmentRefID>SEG7</PaxSegmentRefID>
                                                <PaxSegmentRefID>SEG8</PaxSegmentRefID>
                                            </BaggageFlightAssociations>
                                            <ServiceDefinitionRefID>InclBag31</ServiceDefinitionRefID>
                                        </ServiceDefinitionRef>
                                    </ServiceAssociations>
                                    <ServiceID>PAX4_SEG7_SEG8</ServiceID>
                                </Service>
                                <Service>
                                    <PaxRefID>PAX4</PaxRefID>
                                    <ServiceAssociations>
                                        <ServiceDefinitionRef>
                                            <BaggageFlightAssociations>
                                                <PaxSegmentRefID>SEG3</PaxSegmentRefID>
                                                <PaxSegmentRefID>SEG4</PaxSegmentRefID>
                                            </BaggageFlightAssociations>
                                            <ServiceDefinitionRefID>InclBag32</ServiceDefinitionRefID>
                                        </ServiceDefinitionRef>
                                    </ServiceAssociations>
                                    <ServiceID>PAX4_SEG3_SEG4</ServiceID>
                                </Service>
                            </OfferItem>
                            <OwnerCode>PS</OwnerCode>
                            <PTC_OfferParameters>
                                <PricedPaxNumber>2</PricedPaxNumber>
                                <PTC_PricedCode>ADT</PTC_PricedCode>
                                <PTC_RequestedCode>ADT</PTC_RequestedCode>
                                <RequestedPaxNumber>2</RequestedPaxNumber>
                            </PTC_OfferParameters>
                            <PTC_OfferParameters>
                                <PricedPaxNumber>1</PricedPaxNumber>
                                <PTC_PricedCode>INF</PTC_PricedCode>
                                <PTC_RequestedCode>INF</PTC_RequestedCode>
                                <RequestedPaxNumber>1</RequestedPaxNumber>
                            </PTC_OfferParameters>
                            <PTC_OfferParameters>
                                <PricedPaxNumber>1</PricedPaxNumber>
                                <PTC_PricedCode>CHD</PTC_PricedCode>
                                <PTC_RequestedCode>CHD</PTC_RequestedCode>
                                <RequestedPaxNumber>1</RequestedPaxNumber>
                            </PTC_OfferParameters>
                            <TotalPrice>
                                <TotalAmount CurCode="UAH">17497.00</TotalAmount>
                            </TotalPrice>
                        </Offer>
                        <Offer>
                            <JourneyOverview>
                                <JourneyPriceClass>
                                    <PaxJourneyRefID>FL5</PaxJourneyRefID>
                                </JourneyPriceClass>
                                <JourneyPriceClass>
                                    <PaxJourneyRefID>FL3</PaxJourneyRefID>
                                </JourneyPriceClass>
                            </JourneyOverview>
                            <OfferExpirationTimeLimitDateTime>2021-04-28T07:01:00.000</OfferExpirationTimeLimitDateTime>
                            <OfferID>322b8f64-85aa-40d5-9f9e-7901965d4a80</OfferID>
                            <OfferItem>
                                <FareDetail>
                                    <FareComponent>
                                        <FareBasisCode>X002SSU2</FareBasisCode>
                                        <PaxSegmentRefID>SEG7</PaxSegmentRefID>
                                        <PaxSegmentRefID>SEG8</PaxSegmentRefID>
                                        <Price>
                                            <BaseAmount CurCode="NUC">5.40</BaseAmount>
                                        </Price>
                                        <PriceClassRefID>PC1</PriceClassRefID>
                                        <RBD>
                                            <RBD_Code>X</RBD_Code>
                                        </RBD>
                                    </FareComponent>
                                    <FareComponent>
                                        <FareBasisCode>X002SSU2</FareBasisCode>
                                        <PaxSegmentRefID>SEG3</PaxSegmentRefID>
                                        <PaxSegmentRefID>SEG5</PaxSegmentRefID>
                                        <Price>
                                            <BaseAmount CurCode="NUC">5.40</BaseAmount>
                                        </Price>
                                        <PriceClassRefID>PC1</PriceClassRefID>
                                        <RBD>
                                            <RBD_Code>X</RBD_Code>
                                        </RBD>
                                    </FareComponent>
                                    <FarePriceType>
                                        <FarePriceTypeCode>Filed</FarePriceTypeCode>
                                        <Price>
                                            <BaseAmount CurCode="UAH">308.00</BaseAmount>
                                            <CurConversion>
                                                <Amount CurCode="NUC">10.80</Amount>
                                                <ConversionRate>1.000000</ConversionRate>
                                                <LocalAmount CurCode="UAH">308.00</LocalAmount>
                                            </CurConversion>
                                        </Price>
                                    </FarePriceType>
                                </FareDetail>
                                <OfferItemID>322b8f64-85aa-40d5-9f9e-7901965d4a80-PAX1</OfferItemID>
                                <Price>
                                    <BaseAmount CurCode="UAH">308.00</BaseAmount>
                                    <TaxSummary>
                                        <Tax>
                                            <Amount CurCode="UAH">51.00</Amount>
                                            <Country>
                                                <CountryCode>UA</CountryCode>
                                            </Country>
                                            <TaxCode>SE</TaxCode>
                                        </Tax>
                                        <TotalTaxAmount CurCode="UAH">51.00</TotalTaxAmount>
                                    </TaxSummary>
                                    <TotalAmount CurCode="UAH">359.00</TotalAmount>
                                </Price>
                                <Service>
                                    <PaxRefID>PAX1</PaxRefID>
                                    <ServiceAssociations>
                                        <PaxJourneyRefID>FL5</PaxJourneyRefID>
                                        <PaxJourneyRefID>FL3</PaxJourneyRefID>
                                    </ServiceAssociations>
                                    <ServiceID>PAX1_FL5_FL3</ServiceID>
                                </Service>
                                <Service>
                                    <PaxRefID>PAX1</PaxRefID>
                                    <ServiceAssociations>
                                        <ServiceDefinitionRef>
                                            <BaggageFlightAssociations>
                                                <PaxSegmentRefID>SEG7</PaxSegmentRefID>
                                                <PaxSegmentRefID>SEG8</PaxSegmentRefID>
                                            </BaggageFlightAssociations>
                                            <ServiceDefinitionRefID>InclBag33</ServiceDefinitionRefID>
                                        </ServiceDefinitionRef>
                                    </ServiceAssociations>
                                    <ServiceID>PAX1_SEG7_SEG8</ServiceID>
                                </Service>
                                <Service>
                                    <PaxRefID>PAX1</PaxRefID>
                                    <ServiceAssociations>
                                        <ServiceDefinitionRef>
                                            <BaggageFlightAssociations>
                                                <PaxSegmentRefID>SEG3</PaxSegmentRefID>
                                                <PaxSegmentRefID>SEG5</PaxSegmentRefID>
                                            </BaggageFlightAssociations>
                                            <ServiceDefinitionRefID>InclBag34</ServiceDefinitionRefID>
                                        </ServiceDefinitionRef>
                                    </ServiceAssociations>
                                    <ServiceID>PAX1_SEG3_SEG5</ServiceID>
                                </Service>
                            </OfferItem>
                            <OfferItem>
                                <FareDetail>
                                    <FareComponent>
                                        <FareBasisCode>X002SSU2</FareBasisCode>
                                        <PaxSegmentRefID>SEG7</PaxSegmentRefID>
                                        <PaxSegmentRefID>SEG8</PaxSegmentRefID>
                                        <Price>
                                            <BaseAmount CurCode="NUC">54.00</BaseAmount>
                                        </Price>
                                        <PriceClassRefID>PC1</PriceClassRefID>
                                        <RBD>
                                            <RBD_Code>X</RBD_Code>
                                        </RBD>
                                    </FareComponent>
                                    <FareComponent>
                                        <FareBasisCode>X002SSU2</FareBasisCode>
                                        <PaxSegmentRefID>SEG3</PaxSegmentRefID>
                                        <PaxSegmentRefID>SEG5</PaxSegmentRefID>
                                        <Price>
                                            <BaseAmount CurCode="NUC">54.00</BaseAmount>
                                        </Price>
                                        <PriceClassRefID>PC1</PriceClassRefID>
                                        <RBD>
                                            <RBD_Code>X</RBD_Code>
                                        </RBD>
                                    </FareComponent>
                                    <FarePriceType>
                                        <FarePriceTypeCode>Filed</FarePriceTypeCode>
                                        <Price>
                                            <BaseAmount CurCode="UAH">6034.00</BaseAmount>
                                            <CurConversion>
                                                <Amount CurCode="NUC">108.00</Amount>
                                                <ConversionRate>1.000000</ConversionRate>
                                                <LocalAmount CurCode="UAH">6034.00</LocalAmount>
                                            </CurConversion>
                                        </Price>
                                    </FarePriceType>
                                </FareDetail>
                                <OfferItemID>322b8f64-85aa-40d5-9f9e-7901965d4a80-PAX2</OfferItemID>
                                <Price>
                                    <BaseAmount CurCode="UAH">3017.00</BaseAmount>
                                    <TaxSummary>
                                        <Tax>
                                            <Amount CurCode="UAH">1676.00</Amount>
                                            <Country>
                                                <CountryCode>YQ</CountryCode>
                                            </Country>
                                            <TaxCode>AD</TaxCode>
                                        </Tax>
                                        <Tax>
                                            <Amount CurCode="UAH">205.00</Amount>
                                            <Country>
                                                <CountryCode>UA</CountryCode>
                                            </Country>
                                            <TaxCode>SE</TaxCode>
                                        </Tax>
                                        <Tax>
                                            <Amount CurCode="UAH">84.00</Amount>
                                            <Country>
                                                <CountryCode>UD</CountryCode>
                                            </Country>
                                            <TaxCode>DP</TaxCode>
                                        </Tax>
                                        <Tax>
                                            <Amount CurCode="UAH">531.00</Amount>
                                            <Country>
                                                <CountryCode>YK</CountryCode>
                                            </Country>
                                            <TaxCode>AE</TaxCode>
                                        </Tax>
                                        <Tax>
                                            <Amount CurCode="UAH">8.00</Amount>
                                            <Country>
                                                <CountryCode>ND</CountryCode>
                                            </Country>
                                            <TaxCode>AD</TaxCode>
                                        </Tax>
                                        <Tax>
                                            <Amount CurCode="UAH">443.00</Amount>
                                            <Country>
                                                <CountryCode>XW</CountryCode>
                                            </Country>
                                            <TaxCode>AE</TaxCode>
                                        </Tax>
                                        <TotalTaxAmount CurCode="UAH">2947.00</TotalTaxAmount>
                                    </TaxSummary>
                                    <TotalAmount CurCode="UAH">5964.00</TotalAmount>
                                </Price>
                                <Service>
                                    <PaxRefID>PAX2</PaxRefID>
                                    <ServiceAssociations>
                                        <PaxJourneyRefID>FL5</PaxJourneyRefID>
                                        <PaxJourneyRefID>FL3</PaxJourneyRefID>
                                    </ServiceAssociations>
                                    <ServiceID>PAX2_FL5_FL3</ServiceID>
                                </Service>
                                <Service>
                                    <PaxRefID>PAX2</PaxRefID>
                                    <ServiceAssociations>
                                        <ServiceDefinitionRef>
                                            <BaggageFlightAssociations>
                                                <PaxSegmentRefID>SEG7</PaxSegmentRefID>
                                                <PaxSegmentRefID>SEG8</PaxSegmentRefID>
                                            </BaggageFlightAssociations>
                                            <ServiceDefinitionRefID>InclBag35</ServiceDefinitionRefID>
                                        </ServiceDefinitionRef>
                                    </ServiceAssociations>
                                    <ServiceID>PAX2_SEG7_SEG8</ServiceID>
                                </Service>
                                <Service>
                                    <PaxRefID>PAX2</PaxRefID>
                                    <ServiceAssociations>
                                        <ServiceDefinitionRef>
                                            <BaggageFlightAssociations>
                                                <PaxSegmentRefID>SEG3</PaxSegmentRefID>
                                                <PaxSegmentRefID>SEG5</PaxSegmentRefID>
                                            </BaggageFlightAssociations>
                                            <ServiceDefinitionRefID>InclBag36</ServiceDefinitionRefID>
                                        </ServiceDefinitionRef>
                                    </ServiceAssociations>
                                    <ServiceID>PAX2_SEG3_SEG5</ServiceID>
                                </Service>
                            </OfferItem>
                            <OfferItem>
                                <FareDetail>
                                    <FareComponent>
                                        <FareBasisCode>X002SSU2</FareBasisCode>
                                        <PaxSegmentRefID>SEG7</PaxSegmentRefID>
                                        <PaxSegmentRefID>SEG8</PaxSegmentRefID>
                                        <Price>
                                            <BaseAmount CurCode="NUC">54.00</BaseAmount>
                                        </Price>
                                        <PriceClassRefID>PC1</PriceClassRefID>
                                        <RBD>
                                            <RBD_Code>X</RBD_Code>
                                        </RBD>
                                    </FareComponent>
                                    <FareComponent>
                                        <FareBasisCode>X002SSU2</FareBasisCode>
                                        <PaxSegmentRefID>SEG3</PaxSegmentRefID>
                                        <PaxSegmentRefID>SEG5</PaxSegmentRefID>
                                        <Price>
                                            <BaseAmount CurCode="NUC">54.00</BaseAmount>
                                        </Price>
                                        <PriceClassRefID>PC1</PriceClassRefID>
                                        <RBD>
                                            <RBD_Code>X</RBD_Code>
                                        </RBD>
                                    </FareComponent>
                                    <FarePriceType>
                                        <FarePriceTypeCode>Filed</FarePriceTypeCode>
                                        <Price>
                                            <BaseAmount CurCode="UAH">6034.00</BaseAmount>
                                            <CurConversion>
                                                <Amount CurCode="NUC">108.00</Amount>
                                                <ConversionRate>1.000000</ConversionRate>
                                                <LocalAmount CurCode="UAH">6034.00</LocalAmount>
                                            </CurConversion>
                                        </Price>
                                    </FarePriceType>
                                </FareDetail>
                                <OfferItemID>322b8f64-85aa-40d5-9f9e-7901965d4a80-PAX3</OfferItemID>
                                <Price>
                                    <BaseAmount CurCode="UAH">3017.00</BaseAmount>
                                    <TaxSummary>
                                        <Tax>
                                            <Amount CurCode="UAH">1676.00</Amount>
                                            <Country>
                                                <CountryCode>YQ</CountryCode>
                                            </Country>
                                            <TaxCode>AD</TaxCode>
                                        </Tax>
                                        <Tax>
                                            <Amount CurCode="UAH">205.00</Amount>
                                            <Country>
                                                <CountryCode>UA</CountryCode>
                                            </Country>
                                            <TaxCode>SE</TaxCode>
                                        </Tax>
                                        <Tax>
                                            <Amount CurCode="UAH">84.00</Amount>
                                            <Country>
                                                <CountryCode>UD</CountryCode>
                                            </Country>
                                            <TaxCode>DP</TaxCode>
                                        </Tax>
                                        <Tax>
                                            <Amount CurCode="UAH">531.00</Amount>
                                            <Country>
                                                <CountryCode>YK</CountryCode>
                                            </Country>
                                            <TaxCode>AE</TaxCode>
                                        </Tax>
                                        <Tax>
                                            <Amount CurCode="UAH">8.00</Amount>
                                            <Country>
                                                <CountryCode>ND</CountryCode>
                                            </Country>
                                            <TaxCode>AD</TaxCode>
                                        </Tax>
                                        <Tax>
                                            <Amount CurCode="UAH">443.00</Amount>
                                            <Country>
                                                <CountryCode>XW</CountryCode>
                                            </Country>
                                            <TaxCode>AE</TaxCode>
                                        </Tax>
                                        <TotalTaxAmount CurCode="UAH">2947.00</TotalTaxAmount>
                                    </TaxSummary>
                                    <TotalAmount CurCode="UAH">5964.00</TotalAmount>
                                </Price>
                                <Service>
                                    <PaxRefID>PAX3</PaxRefID>
                                    <ServiceAssociations>
                                        <PaxJourneyRefID>FL5</PaxJourneyRefID>
                                        <PaxJourneyRefID>FL3</PaxJourneyRefID>
                                    </ServiceAssociations>
                                    <ServiceID>PAX3_FL5_FL3</ServiceID>
                                </Service>
                                <Service>
                                    <PaxRefID>PAX3</PaxRefID>
                                    <ServiceAssociations>
                                        <ServiceDefinitionRef>
                                            <BaggageFlightAssociations>
                                                <PaxSegmentRefID>SEG7</PaxSegmentRefID>
                                                <PaxSegmentRefID>SEG8</PaxSegmentRefID>
                                            </BaggageFlightAssociations>
                                            <ServiceDefinitionRefID>InclBag37</ServiceDefinitionRefID>
                                        </ServiceDefinitionRef>
                                    </ServiceAssociations>
                                    <ServiceID>PAX3_SEG7_SEG8</ServiceID>
                                </Service>
                                <Service>
                                    <PaxRefID>PAX3</PaxRefID>
                                    <ServiceAssociations>
                                        <ServiceDefinitionRef>
                                            <BaggageFlightAssociations>
                                                <PaxSegmentRefID>SEG3</PaxSegmentRefID>
                                                <PaxSegmentRefID>SEG5</PaxSegmentRefID>
                                            </BaggageFlightAssociations>
                                            <ServiceDefinitionRefID>InclBag38</ServiceDefinitionRefID>
                                        </ServiceDefinitionRef>
                                    </ServiceAssociations>
                                    <ServiceID>PAX3_SEG3_SEG5</ServiceID>
                                </Service>
                            </OfferItem>
                            <OfferItem>
                                <FareDetail>
                                    <FareComponent>
                                        <FareBasisCode>X002SSU2</FareBasisCode>
                                        <PaxSegmentRefID>SEG7</PaxSegmentRefID>
                                        <PaxSegmentRefID>SEG8</PaxSegmentRefID>
                                        <Price>
                                            <BaseAmount CurCode="NUC">40.50</BaseAmount>
                                        </Price>
                                        <PriceClassRefID>PC1</PriceClassRefID>
                                        <RBD>
                                            <RBD_Code>X</RBD_Code>
                                        </RBD>
                                    </FareComponent>
                                    <FareComponent>
                                        <FareBasisCode>X002SSU2</FareBasisCode>
                                        <PaxSegmentRefID>SEG3</PaxSegmentRefID>
                                        <PaxSegmentRefID>SEG5</PaxSegmentRefID>
                                        <Price>
                                            <BaseAmount CurCode="NUC">40.50</BaseAmount>
                                        </Price>
                                        <PriceClassRefID>PC1</PriceClassRefID>
                                        <RBD>
                                            <RBD_Code>X</RBD_Code>
                                        </RBD>
                                    </FareComponent>
                                    <FarePriceType>
                                        <FarePriceTypeCode>Filed</FarePriceTypeCode>
                                        <Price>
                                            <BaseAmount CurCode="UAH">2263.00</BaseAmount>
                                            <CurConversion>
                                                <Amount CurCode="NUC">81.00</Amount>
                                                <ConversionRate>1.000000</ConversionRate>
                                                <LocalAmount CurCode="UAH">2263.00</LocalAmount>
                                            </CurConversion>
                                        </Price>
                                    </FarePriceType>
                                </FareDetail>
                                <OfferItemID>322b8f64-85aa-40d5-9f9e-7901965d4a80-PAX4</OfferItemID>
                                <Price>
                                    <BaseAmount CurCode="UAH">2263.00</BaseAmount>
                                    <TaxSummary>
                                        <Tax>
                                            <Amount CurCode="UAH">1676.00</Amount>
                                            <Country>
                                                <CountryCode>YQ</CountryCode>
                                            </Country>
                                            <TaxCode>AD</TaxCode>
                                        </Tax>
                                        <Tax>
                                            <Amount CurCode="UAH">205.00</Amount>
                                            <Country>
                                                <CountryCode>UA</CountryCode>
                                            </Country>
                                            <TaxCode>SE</TaxCode>
                                        </Tax>
                                        <Tax>
                                            <Amount CurCode="UAH">84.00</Amount>
                                            <Country>
                                                <CountryCode>UD</CountryCode>
                                            </Country>
                                            <TaxCode>DP</TaxCode>
                                        </Tax>
                                        <Tax>
                                            <Amount CurCode="UAH">531.00</Amount>
                                            <Country>
                                                <CountryCode>YK</CountryCode>
                                            </Country>
                                            <TaxCode>AE</TaxCode>
                                        </Tax>
                                        <Tax>
                                            <Amount CurCode="UAH">8.00</Amount>
                                            <Country>
                                                <CountryCode>ND</CountryCode>
                                            </Country>
                                            <TaxCode>AD</TaxCode>
                                        </Tax>
                                        <Tax>
                                            <Amount CurCode="UAH">443.00</Amount>
                                            <Country>
                                                <CountryCode>XW</CountryCode>
                                            </Country>
                                            <TaxCode>AE</TaxCode>
                                        </Tax>
                                        <TotalTaxAmount CurCode="UAH">2947.00</TotalTaxAmount>
                                    </TaxSummary>
                                    <TotalAmount CurCode="UAH">5210.00</TotalAmount>
                                </Price>
                                <Service>
                                    <PaxRefID>PAX4</PaxRefID>
                                    <ServiceAssociations>
                                        <PaxJourneyRefID>FL5</PaxJourneyRefID>
                                        <PaxJourneyRefID>FL3</PaxJourneyRefID>
                                    </ServiceAssociations>
                                    <ServiceID>PAX4_FL5_FL3</ServiceID>
                                </Service>
                                <Service>
                                    <PaxRefID>PAX4</PaxRefID>
                                    <ServiceAssociations>
                                        <ServiceDefinitionRef>
                                            <BaggageFlightAssociations>
                                                <PaxSegmentRefID>SEG7</PaxSegmentRefID>
                                                <PaxSegmentRefID>SEG8</PaxSegmentRefID>
                                            </BaggageFlightAssociations>
                                            <ServiceDefinitionRefID>InclBag39</ServiceDefinitionRefID>
                                        </ServiceDefinitionRef>
                                    </ServiceAssociations>
                                    <ServiceID>PAX4_SEG7_SEG8</ServiceID>
                                </Service>
                                <Service>
                                    <PaxRefID>PAX4</PaxRefID>
                                    <ServiceAssociations>
                                        <ServiceDefinitionRef>
                                            <BaggageFlightAssociations>
                                                <PaxSegmentRefID>SEG3</PaxSegmentRefID>
                                                <PaxSegmentRefID>SEG5</PaxSegmentRefID>
                                            </BaggageFlightAssociations>
                                            <ServiceDefinitionRefID>InclBag40</ServiceDefinitionRefID>
                                        </ServiceDefinitionRef>
                                    </ServiceAssociations>
                                    <ServiceID>PAX4_SEG3_SEG5</ServiceID>
                                </Service>
                            </OfferItem>
                            <OwnerCode>PS</OwnerCode>
                            <PTC_OfferParameters>
                                <PricedPaxNumber>2</PricedPaxNumber>
                                <PTC_PricedCode>ADT</PTC_PricedCode>
                                <PTC_RequestedCode>ADT</PTC_RequestedCode>
                                <RequestedPaxNumber>2</RequestedPaxNumber>
                            </PTC_OfferParameters>
                            <PTC_OfferParameters>
                                <PricedPaxNumber>1</PricedPaxNumber>
                                <PTC_PricedCode>INF</PTC_PricedCode>
                                <PTC_RequestedCode>INF</PTC_RequestedCode>
                                <RequestedPaxNumber>1</RequestedPaxNumber>
                            </PTC_OfferParameters>
                            <PTC_OfferParameters>
                                <PricedPaxNumber>1</PricedPaxNumber>
                                <PTC_PricedCode>CHD</PTC_PricedCode>
                                <PTC_RequestedCode>CHD</PTC_RequestedCode>
                                <RequestedPaxNumber>1</RequestedPaxNumber>
                            </PTC_OfferParameters>
                            <TotalPrice>
                                <TotalAmount CurCode="UAH">17497.00</TotalAmount>
                            </TotalPrice>
                        </Offer>
                        <Offer>
                            <JourneyOverview>
                                <JourneyPriceClass>
                                    <PaxJourneyRefID>FL5</PaxJourneyRefID>
                                </JourneyPriceClass>
                                <JourneyPriceClass>
                                    <PaxJourneyRefID>FL4</PaxJourneyRefID>
                                </JourneyPriceClass>
                            </JourneyOverview>
                            <OfferExpirationTimeLimitDateTime>2021-04-28T07:01:00.000</OfferExpirationTimeLimitDateTime>
                            <OfferID>60c4a213-7a4a-4b34-b202-403cd1266ae9</OfferID>
                            <OfferItem>
                                <FareDetail>
                                    <FareComponent>
                                        <FareBasisCode>X002SSU2</FareBasisCode>
                                        <PaxSegmentRefID>SEG7</PaxSegmentRefID>
                                        <PaxSegmentRefID>SEG8</PaxSegmentRefID>
                                        <Price>
                                            <BaseAmount CurCode="NUC">5.40</BaseAmount>
                                        </Price>
                                        <PriceClassRefID>PC1</PriceClassRefID>
                                        <RBD>
                                            <RBD_Code>X</RBD_Code>
                                        </RBD>
                                    </FareComponent>
                                    <FareComponent>
                                        <FareBasisCode>X002SSU2</FareBasisCode>
                                        <PaxSegmentRefID>SEG3</PaxSegmentRefID>
                                        <PaxSegmentRefID>SEG6</PaxSegmentRefID>
                                        <Price>
                                            <BaseAmount CurCode="NUC">5.40</BaseAmount>
                                        </Price>
                                        <PriceClassRefID>PC1</PriceClassRefID>
                                        <RBD>
                                            <RBD_Code>X</RBD_Code>
                                        </RBD>
                                    </FareComponent>
                                    <FarePriceType>
                                        <FarePriceTypeCode>Filed</FarePriceTypeCode>
                                        <Price>
                                            <BaseAmount CurCode="UAH">308.00</BaseAmount>
                                            <CurConversion>
                                                <Amount CurCode="NUC">10.80</Amount>
                                                <ConversionRate>1.000000</ConversionRate>
                                                <LocalAmount CurCode="UAH">308.00</LocalAmount>
                                            </CurConversion>
                                        </Price>
                                    </FarePriceType>
                                </FareDetail>
                                <OfferItemID>60c4a213-7a4a-4b34-b202-403cd1266ae9-PAX1</OfferItemID>
                                <Price>
                                    <BaseAmount CurCode="UAH">308.00</BaseAmount>
                                    <TaxSummary>
                                        <Tax>
                                            <Amount CurCode="UAH">51.00</Amount>
                                            <Country>
                                                <CountryCode>UA</CountryCode>
                                            </Country>
                                            <TaxCode>SE</TaxCode>
                                        </Tax>
                                        <TotalTaxAmount CurCode="UAH">51.00</TotalTaxAmount>
                                    </TaxSummary>
                                    <TotalAmount CurCode="UAH">359.00</TotalAmount>
                                </Price>
                                <Service>
                                    <PaxRefID>PAX1</PaxRefID>
                                    <ServiceAssociations>
                                        <PaxJourneyRefID>FL5</PaxJourneyRefID>
                                        <PaxJourneyRefID>FL4</PaxJourneyRefID>
                                    </ServiceAssociations>
                                    <ServiceID>PAX1_FL5_FL4</ServiceID>
                                </Service>
                                <Service>
                                    <PaxRefID>PAX1</PaxRefID>
                                    <ServiceAssociations>
                                        <ServiceDefinitionRef>
                                            <BaggageFlightAssociations>
                                                <PaxSegmentRefID>SEG7</PaxSegmentRefID>
                                                <PaxSegmentRefID>SEG8</PaxSegmentRefID>
                                            </BaggageFlightAssociations>
                                            <ServiceDefinitionRefID>InclBag41</ServiceDefinitionRefID>
                                        </ServiceDefinitionRef>
                                    </ServiceAssociations>
                                    <ServiceID>PAX1_SEG7_SEG8</ServiceID>
                                </Service>
                                <Service>
                                    <PaxRefID>PAX1</PaxRefID>
                                    <ServiceAssociations>
                                        <ServiceDefinitionRef>
                                            <BaggageFlightAssociations>
                                                <PaxSegmentRefID>SEG3</PaxSegmentRefID>
                                                <PaxSegmentRefID>SEG6</PaxSegmentRefID>
                                            </BaggageFlightAssociations>
                                            <ServiceDefinitionRefID>InclBag42</ServiceDefinitionRefID>
                                        </ServiceDefinitionRef>
                                    </ServiceAssociations>
                                    <ServiceID>PAX1_SEG3_SEG6</ServiceID>
                                </Service>
                            </OfferItem>
                            <OfferItem>
                                <FareDetail>
                                    <FareComponent>
                                        <FareBasisCode>X002SSU2</FareBasisCode>
                                        <PaxSegmentRefID>SEG7</PaxSegmentRefID>
                                        <PaxSegmentRefID>SEG8</PaxSegmentRefID>
                                        <Price>
                                            <BaseAmount CurCode="NUC">54.00</BaseAmount>
                                        </Price>
                                        <PriceClassRefID>PC1</PriceClassRefID>
                                        <RBD>
                                            <RBD_Code>X</RBD_Code>
                                        </RBD>
                                    </FareComponent>
                                    <FareComponent>
                                        <FareBasisCode>X002SSU2</FareBasisCode>
                                        <PaxSegmentRefID>SEG3</PaxSegmentRefID>
                                        <PaxSegmentRefID>SEG6</PaxSegmentRefID>
                                        <Price>
                                            <BaseAmount CurCode="NUC">54.00</BaseAmount>
                                        </Price>
                                        <PriceClassRefID>PC1</PriceClassRefID>
                                        <RBD>
                                            <RBD_Code>X</RBD_Code>
                                        </RBD>
                                    </FareComponent>
                                    <FarePriceType>
                                        <FarePriceTypeCode>Filed</FarePriceTypeCode>
                                        <Price>
                                            <BaseAmount CurCode="UAH">6034.00</BaseAmount>
                                            <CurConversion>
                                                <Amount CurCode="NUC">108.00</Amount>
                                                <ConversionRate>1.000000</ConversionRate>
                                                <LocalAmount CurCode="UAH">6034.00</LocalAmount>
                                            </CurConversion>
                                        </Price>
                                    </FarePriceType>
                                </FareDetail>
                                <OfferItemID>60c4a213-7a4a-4b34-b202-403cd1266ae9-PAX2</OfferItemID>
                                <Price>
                                    <BaseAmount CurCode="UAH">3017.00</BaseAmount>
                                    <TaxSummary>
                                        <Tax>
                                            <Amount CurCode="UAH">1676.00</Amount>
                                            <Country>
                                                <CountryCode>YQ</CountryCode>
                                            </Country>
                                            <TaxCode>AD</TaxCode>
                                        </Tax>
                                        <Tax>
                                            <Amount CurCode="UAH">205.00</Amount>
                                            <Country>
                                                <CountryCode>UA</CountryCode>
                                            </Country>
                                            <TaxCode>SE</TaxCode>
                                        </Tax>
                                        <Tax>
                                            <Amount CurCode="UAH">84.00</Amount>
                                            <Country>
                                                <CountryCode>UD</CountryCode>
                                            </Country>
                                            <TaxCode>DP</TaxCode>
                                        </Tax>
                                        <Tax>
                                            <Amount CurCode="UAH">531.00</Amount>
                                            <Country>
                                                <CountryCode>YK</CountryCode>
                                            </Country>
                                            <TaxCode>AE</TaxCode>
                                        </Tax>
                                        <Tax>
                                            <Amount CurCode="UAH">8.00</Amount>
                                            <Country>
                                                <CountryCode>ND</CountryCode>
                                            </Country>
                                            <TaxCode>AD</TaxCode>
                                        </Tax>
                                        <Tax>
                                            <Amount CurCode="UAH">443.00</Amount>
                                            <Country>
                                                <CountryCode>XW</CountryCode>
                                            </Country>
                                            <TaxCode>AE</TaxCode>
                                        </Tax>
                                        <TotalTaxAmount CurCode="UAH">2947.00</TotalTaxAmount>
                                    </TaxSummary>
                                    <TotalAmount CurCode="UAH">5964.00</TotalAmount>
                                </Price>
                                <Service>
                                    <PaxRefID>PAX2</PaxRefID>
                                    <ServiceAssociations>
                                        <PaxJourneyRefID>FL5</PaxJourneyRefID>
                                        <PaxJourneyRefID>FL4</PaxJourneyRefID>
                                    </ServiceAssociations>
                                    <ServiceID>PAX2_FL5_FL4</ServiceID>
                                </Service>
                                <Service>
                                    <PaxRefID>PAX2</PaxRefID>
                                    <ServiceAssociations>
                                        <ServiceDefinitionRef>
                                            <BaggageFlightAssociations>
                                                <PaxSegmentRefID>SEG7</PaxSegmentRefID>
                                                <PaxSegmentRefID>SEG8</PaxSegmentRefID>
                                            </BaggageFlightAssociations>
                                            <ServiceDefinitionRefID>InclBag43</ServiceDefinitionRefID>
                                        </ServiceDefinitionRef>
                                    </ServiceAssociations>
                                    <ServiceID>PAX2_SEG7_SEG8</ServiceID>
                                </Service>
                                <Service>
                                    <PaxRefID>PAX2</PaxRefID>
                                    <ServiceAssociations>
                                        <ServiceDefinitionRef>
                                            <BaggageFlightAssociations>
                                                <PaxSegmentRefID>SEG3</PaxSegmentRefID>
                                                <PaxSegmentRefID>SEG6</PaxSegmentRefID>
                                            </BaggageFlightAssociations>
                                            <ServiceDefinitionRefID>InclBag44</ServiceDefinitionRefID>
                                        </ServiceDefinitionRef>
                                    </ServiceAssociations>
                                    <ServiceID>PAX2_SEG3_SEG6</ServiceID>
                                </Service>
                            </OfferItem>
                            <OfferItem>
                                <FareDetail>
                                    <FareComponent>
                                        <FareBasisCode>X002SSU2</FareBasisCode>
                                        <PaxSegmentRefID>SEG7</PaxSegmentRefID>
                                        <PaxSegmentRefID>SEG8</PaxSegmentRefID>
                                        <Price>
                                            <BaseAmount CurCode="NUC">54.00</BaseAmount>
                                        </Price>
                                        <PriceClassRefID>PC1</PriceClassRefID>
                                        <RBD>
                                            <RBD_Code>X</RBD_Code>
                                        </RBD>
                                    </FareComponent>
                                    <FareComponent>
                                        <FareBasisCode>X002SSU2</FareBasisCode>
                                        <PaxSegmentRefID>SEG3</PaxSegmentRefID>
                                        <PaxSegmentRefID>SEG6</PaxSegmentRefID>
                                        <Price>
                                            <BaseAmount CurCode="NUC">54.00</BaseAmount>
                                        </Price>
                                        <PriceClassRefID>PC1</PriceClassRefID>
                                        <RBD>
                                            <RBD_Code>X</RBD_Code>
                                        </RBD>
                                    </FareComponent>
                                    <FarePriceType>
                                        <FarePriceTypeCode>Filed</FarePriceTypeCode>
                                        <Price>
                                            <BaseAmount CurCode="UAH">6034.00</BaseAmount>
                                            <CurConversion>
                                                <Amount CurCode="NUC">108.00</Amount>
                                                <ConversionRate>1.000000</ConversionRate>
                                                <LocalAmount CurCode="UAH">6034.00</LocalAmount>
                                            </CurConversion>
                                        </Price>
                                    </FarePriceType>
                                </FareDetail>
                                <OfferItemID>60c4a213-7a4a-4b34-b202-403cd1266ae9-PAX3</OfferItemID>
                                <Price>
                                    <BaseAmount CurCode="UAH">3017.00</BaseAmount>
                                    <TaxSummary>
                                        <Tax>
                                            <Amount CurCode="UAH">1676.00</Amount>
                                            <Country>
                                                <CountryCode>YQ</CountryCode>
                                            </Country>
                                            <TaxCode>AD</TaxCode>
                                        </Tax>
                                        <Tax>
                                            <Amount CurCode="UAH">205.00</Amount>
                                            <Country>
                                                <CountryCode>UA</CountryCode>
                                            </Country>
                                            <TaxCode>SE</TaxCode>
                                        </Tax>
                                        <Tax>
                                            <Amount CurCode="UAH">84.00</Amount>
                                            <Country>
                                                <CountryCode>UD</CountryCode>
                                            </Country>
                                            <TaxCode>DP</TaxCode>
                                        </Tax>
                                        <Tax>
                                            <Amount CurCode="UAH">531.00</Amount>
                                            <Country>
                                                <CountryCode>YK</CountryCode>
                                            </Country>
                                            <TaxCode>AE</TaxCode>
                                        </Tax>
                                        <Tax>
                                            <Amount CurCode="UAH">8.00</Amount>
                                            <Country>
                                                <CountryCode>ND</CountryCode>
                                            </Country>
                                            <TaxCode>AD</TaxCode>
                                        </Tax>
                                        <Tax>
                                            <Amount CurCode="UAH">443.00</Amount>
                                            <Country>
                                                <CountryCode>XW</CountryCode>
                                            </Country>
                                            <TaxCode>AE</TaxCode>
                                        </Tax>
                                        <TotalTaxAmount CurCode="UAH">2947.00</TotalTaxAmount>
                                    </TaxSummary>
                                    <TotalAmount CurCode="UAH">5964.00</TotalAmount>
                                </Price>
                                <Service>
                                    <PaxRefID>PAX3</PaxRefID>
                                    <ServiceAssociations>
                                        <PaxJourneyRefID>FL5</PaxJourneyRefID>
                                        <PaxJourneyRefID>FL4</PaxJourneyRefID>
                                    </ServiceAssociations>
                                    <ServiceID>PAX3_FL5_FL4</ServiceID>
                                </Service>
                                <Service>
                                    <PaxRefID>PAX3</PaxRefID>
                                    <ServiceAssociations>
                                        <ServiceDefinitionRef>
                                            <BaggageFlightAssociations>
                                                <PaxSegmentRefID>SEG7</PaxSegmentRefID>
                                                <PaxSegmentRefID>SEG8</PaxSegmentRefID>
                                            </BaggageFlightAssociations>
                                            <ServiceDefinitionRefID>InclBag45</ServiceDefinitionRefID>
                                        </ServiceDefinitionRef>
                                    </ServiceAssociations>
                                    <ServiceID>PAX3_SEG7_SEG8</ServiceID>
                                </Service>
                                <Service>
                                    <PaxRefID>PAX3</PaxRefID>
                                    <ServiceAssociations>
                                        <ServiceDefinitionRef>
                                            <BaggageFlightAssociations>
                                                <PaxSegmentRefID>SEG3</PaxSegmentRefID>
                                                <PaxSegmentRefID>SEG6</PaxSegmentRefID>
                                            </BaggageFlightAssociations>
                                            <ServiceDefinitionRefID>InclBag46</ServiceDefinitionRefID>
                                        </ServiceDefinitionRef>
                                    </ServiceAssociations>
                                    <ServiceID>PAX3_SEG3_SEG6</ServiceID>
                                </Service>
                            </OfferItem>
                            <OfferItem>
                                <FareDetail>
                                    <FareComponent>
                                        <FareBasisCode>X002SSU2</FareBasisCode>
                                        <PaxSegmentRefID>SEG7</PaxSegmentRefID>
                                        <PaxSegmentRefID>SEG8</PaxSegmentRefID>
                                        <Price>
                                            <BaseAmount CurCode="NUC">40.50</BaseAmount>
                                        </Price>
                                        <PriceClassRefID>PC1</PriceClassRefID>
                                        <RBD>
                                            <RBD_Code>X</RBD_Code>
                                        </RBD>
                                    </FareComponent>
                                    <FareComponent>
                                        <FareBasisCode>X002SSU2</FareBasisCode>
                                        <PaxSegmentRefID>SEG3</PaxSegmentRefID>
                                        <PaxSegmentRefID>SEG6</PaxSegmentRefID>
                                        <Price>
                                            <BaseAmount CurCode="NUC">40.50</BaseAmount>
                                        </Price>
                                        <PriceClassRefID>PC1</PriceClassRefID>
                                        <RBD>
                                            <RBD_Code>X</RBD_Code>
                                        </RBD>
                                    </FareComponent>
                                    <FarePriceType>
                                        <FarePriceTypeCode>Filed</FarePriceTypeCode>
                                        <Price>
                                            <BaseAmount CurCode="UAH">2263.00</BaseAmount>
                                            <CurConversion>
                                                <Amount CurCode="NUC">81.00</Amount>
                                                <ConversionRate>1.000000</ConversionRate>
                                                <LocalAmount CurCode="UAH">2263.00</LocalAmount>
                                            </CurConversion>
                                        </Price>
                                    </FarePriceType>
                                </FareDetail>
                                <OfferItemID>60c4a213-7a4a-4b34-b202-403cd1266ae9-PAX4</OfferItemID>
                                <Price>
                                    <BaseAmount CurCode="UAH">2263.00</BaseAmount>
                                    <TaxSummary>
                                        <Tax>
                                            <Amount CurCode="UAH">1676.00</Amount>
                                            <Country>
                                                <CountryCode>YQ</CountryCode>
                                            </Country>
                                            <TaxCode>AD</TaxCode>
                                        </Tax>
                                        <Tax>
                                            <Amount CurCode="UAH">205.00</Amount>
                                            <Country>
                                                <CountryCode>UA</CountryCode>
                                            </Country>
                                            <TaxCode>SE</TaxCode>
                                        </Tax>
                                        <Tax>
                                            <Amount CurCode="UAH">84.00</Amount>
                                            <Country>
                                                <CountryCode>UD</CountryCode>
                                            </Country>
                                            <TaxCode>DP</TaxCode>
                                        </Tax>
                                        <Tax>
                                            <Amount CurCode="UAH">531.00</Amount>
                                            <Country>
                                                <CountryCode>YK</CountryCode>
                                            </Country>
                                            <TaxCode>AE</TaxCode>
                                        </Tax>
                                        <Tax>
                                            <Amount CurCode="UAH">8.00</Amount>
                                            <Country>
                                                <CountryCode>ND</CountryCode>
                                            </Country>
                                            <TaxCode>AD</TaxCode>
                                        </Tax>
                                        <Tax>
                                            <Amount CurCode="UAH">443.00</Amount>
                                            <Country>
                                                <CountryCode>XW</CountryCode>
                                            </Country>
                                            <TaxCode>AE</TaxCode>
                                        </Tax>
                                        <TotalTaxAmount CurCode="UAH">2947.00</TotalTaxAmount>
                                    </TaxSummary>
                                    <TotalAmount CurCode="UAH">5210.00</TotalAmount>
                                </Price>
                                <Service>
                                    <PaxRefID>PAX4</PaxRefID>
                                    <ServiceAssociations>
                                        <PaxJourneyRefID>FL5</PaxJourneyRefID>
                                        <PaxJourneyRefID>FL4</PaxJourneyRefID>
                                    </ServiceAssociations>
                                    <ServiceID>PAX4_FL5_FL4</ServiceID>
                                </Service>
                                <Service>
                                    <PaxRefID>PAX4</PaxRefID>
                                    <ServiceAssociations>
                                        <ServiceDefinitionRef>
                                            <BaggageFlightAssociations>
                                                <PaxSegmentRefID>SEG7</PaxSegmentRefID>
                                                <PaxSegmentRefID>SEG8</PaxSegmentRefID>
                                            </BaggageFlightAssociations>
                                            <ServiceDefinitionRefID>InclBag47</ServiceDefinitionRefID>
                                        </ServiceDefinitionRef>
                                    </ServiceAssociations>
                                    <ServiceID>PAX4_SEG7_SEG8</ServiceID>
                                </Service>
                                <Service>
                                    <PaxRefID>PAX4</PaxRefID>
                                    <ServiceAssociations>
                                        <ServiceDefinitionRef>
                                            <BaggageFlightAssociations>
                                                <PaxSegmentRefID>SEG3</PaxSegmentRefID>
                                                <PaxSegmentRefID>SEG6</PaxSegmentRefID>
                                            </BaggageFlightAssociations>
                                            <ServiceDefinitionRefID>InclBag48</ServiceDefinitionRefID>
                                        </ServiceDefinitionRef>
                                    </ServiceAssociations>
                                    <ServiceID>PAX4_SEG3_SEG6</ServiceID>
                                </Service>
                            </OfferItem>
                            <OwnerCode>PS</OwnerCode>
                            <PTC_OfferParameters>
                                <PricedPaxNumber>2</PricedPaxNumber>
                                <PTC_PricedCode>ADT</PTC_PricedCode>
                                <PTC_RequestedCode>ADT</PTC_RequestedCode>
                                <RequestedPaxNumber>2</RequestedPaxNumber>
                            </PTC_OfferParameters>
                            <PTC_OfferParameters>
                                <PricedPaxNumber>1</PricedPaxNumber>
                                <PTC_PricedCode>INF</PTC_PricedCode>
                                <PTC_RequestedCode>INF</PTC_RequestedCode>
                                <RequestedPaxNumber>1</RequestedPaxNumber>
                            </PTC_OfferParameters>
                            <PTC_OfferParameters>
                                <PricedPaxNumber>1</PricedPaxNumber>
                                <PTC_PricedCode>CHD</PTC_PricedCode>
                                <PTC_RequestedCode>CHD</PTC_RequestedCode>
                                <RequestedPaxNumber>1</RequestedPaxNumber>
                            </PTC_OfferParameters>
                            <TotalPrice>
                                <TotalAmount CurCode="UAH">17497.00</TotalAmount>
                            </TotalPrice>
                        </Offer>
                    </CarrierOffers>
                </OffersGroup>
                <ShoppingResponse>
                    <ShoppingResponseRefID>3def2780-bc40-4f91-8afc-66bc015f9119</ShoppingResponseRefID>
                </ShoppingResponse>
            </Response>
        </IATA_AirShoppingRS>
    </SOAP-ENV:Body>
</SOAP-ENV:Envelope>
 Click here to expand...

M = Mandatory; O = Optional; C = Conditional

Field name
Description
M/O/C
Example

IATA_AirShoppingRS

The AirShopping transaction set supports both demanding and flexible shopping experiences for anonymous or personalized shopping.

The combination of functionally-rich attribute and affinity shopping support date range or specific month (calendar) shopping as an example.

The response returns offers which may include branded offers or itinerary-priced offers with or without ancillary services. It also returns applicable rules for the integrated fares as well as for each service.

The message also returns multi-media content at message level as well as media references at the individual offer level.

M

↳ ErrorError(s) that prevented the message from processing.C
   ↳ CodeThe code corresponding to the processing error as defined by PADIS 9321.M<Code>911</Code>
   ↳ DescTextFree text description of the provided error.M<DescText>Unable to process - system error / Invalid query</DescText>
↳ ResponseAirShopping results.C
   ↳ DataListsData List definition for this message.O
      ↳ BaggageAllowanceListBaggage allowance data list definitionO
         ↳ BaggageAllowanceThe amount of checked or carry-on luggage the airline will allow per passenger.M
            ↳ BaggageAllowanceIDUnique identifier of this Baggage Allowance.M<BaggageAllowanceID>CB1</BaggageAllowanceID>
            ↳ PieceAllowanceDefines the maximum number of each allowable baggage type.O
               ↳ ApplicablePartyTextBaggage weight restriction application. Examples: Party, Traveler. Party applies to all Travelers.M<ApplicablePartyText>Traveler</ApplicablePartyText>
            ↳ PieceWeightAllowanceBaggage weight allowance with application information.O
               ↳ MaximumWeightMeasureMaximum weight value and unit of measure.M<MaximumWeightMeasure UnitCode="KG">23</MaximumWeightMeasure>
            ↳ TotalQtyMaximum pieces of baggage allowed.M<TotalQty>1</TotalQty>
            ↳ TypeCodeType of Baggage Allowance. Checked or CarryOn.M<TypeCode>Checked</TypeCode>
      ↳ OriginDestListOrigin Destination data list definition.O
          ↳ OriginDestThe Origin and Destination airport/city pair which confines a passenger journey or an aircraft flight.M
              ↳ DestCodeIATA defined code identifying a city or station.M<DestCode>IST</DestCode>
              ↳ OriginCodeIATA defined code identifying a city or station.M<OriginCode>LWO</OriginCode>
              ↳ OriginDestIDUniquely identifies an Origin Destination within the context of one message.O<OriginDestID>OD1</OriginDestID>
              ↳ PaxJourneyRefIDUniquely identifies a Passenger Journey within the context of one message.O<PaxJourneyRefID>FL1</PaxJourneyRefID>
      ↳ PaxJourneyListJourney data list definition.O
         ↳ PaxJourneyA collection of segments which satisfies transportation of a passenger for a given origin and destination.M
            ↳ DurationTotal journey time including the combined air time and connection times. In case of stopover, this may or may not include stopover durations.O<Duration>P0Y0M0DT5H50M0.000S</Duration>
            ↳ PaxJourneyIDUniquely identifies a Passenger Journey within the context of one message.O<PaxJourneyID>FL1</PaxJourneyID>
            ↳ PaxSegmentRefIDReference to a Passenger Segment ID within this message.M<PaxSegmentRefID>SEG1</PaxSegmentRefID>
      ↳ PaxListPassenger data list definition.O
         ↳ PaxAny person except members of the crew carried or to be carried with the consent of the carrier, on board of any transport vehicle such as aircraft, train, bus, ship. Holds the attributes specific to one booking, from shopping to fulfilment.M
            ↳ PaxIDUniquely identifies a Passenger within the context of one message.M<PaxID>PAX1</PaxID>
            ↳ PTCType code applying to the Passenger which typically drives pricing.
<PTC>ADT</PTC>
      ↳ PaxSegmentListSegment data list definition.O
         ↳ PaxSegmentTransportation of a passenger on a Dated Operating Segment.M
            ↳ ArrivalThe action or process of arriving of a transport vehicle in any place or location.M
               ↳ AircraftScheduledDateTimeThe Scheduled Date and Time of Arrival of the aircraft at the terminal or departure gate at an airport.O<AircraftScheduledDateTime>2021-01-15T08:00:00</AircraftScheduledDateTime>
               ↳ IATA_LocationCodeIATA defined code identifying a city or station.O<IATA_LocationCode>KBP</IATA_LocationCode>
               ↳ TerminalNameThe name of the terminal.O<TerminalName>D</TerminalName>
            ↳ DatedOperatingLegThe nonstop operation of a transport vehicle between the departure station and the arrival station. Can be used for aircrafts as well as other transport vehicles such as train or bus etc.O
               ↳ ArrivalThe action or process of arriving of a transport vehicle in any place or location.M
                  ↳ IATA_LocationCodeIATA defined code identifying a city or station.O<IATA_LocationCode>KBP</IATA_LocationCode>
               ↳ CarrierAircraftTypeCarrier defined internal grouping of aircrafts with the same form, function and specification.O
                  ↳ CarrierAircraftTypeCodeInternal code used by a carrier to identify the type of aircraft.O<CarrierAircraftTypeCode>737</CarrierAircraftTypeCode>
               ↳ DatedOperatingLegIDUniquely identifies a leg within the context of one message.O<DatedOperatingLegID>LG1</DatedOperatingLegID>
               ↳ DepThe action or process of leaving of a transport vehicle from any place or location.M
                  ↳ IATA_LocationCodeIATA defined code identifying a city or station.
<IATA_LocationCode>IST</IATA_LocationCode>
            ↳ DepThe action or process of leaving of a transport vehicle from any place or location.M
               ↳ AircraftScheduledDateTimeThe Scheduled Date and Time of Arrival of the aircraft at the terminal or departure gate at an airport.O<AircraftScheduledDateTime>2021-01-15T06:55:00</AircraftScheduledDateTime>
               ↳ IATA_LocationCodeIATA defined code identifying a city or station.O<IATA_LocationCode>IST</IATA_LocationCode>
               ↳ TerminalNameThe name of the terminal.O<TerminalName>F</TerminalName>
            ↳ DurationTotal segment time including the combined air time and connection times of any legs.O<Duration>P0Y0M0DT1H5M0.000S</Duration>
            ↳ MarketingCarrierInfoThe commercial designation under which a Dated Operating Segment can be booked, either under the operating carrier's designator or that of another carrier (codeshare).M
               ↳ CarrierDesigCodeAirline code assigned to a carrier. Either ICAO-defined 3-character code or IATA-defined 2-character code.M<CarrierDesigCode>PS</CarrierDesigCode>
               ↳ MarketingCarrierFlightNumberTextThe numerical designation of a flight as it is marketed by a carrier.M<MarketingCarrierFlightNumberText>716</MarketingCarrierFlightNumberText>
            ↳ OperatingCarrierInfoAn operation between board point and any subsequent off point within the same flight designator. Could be one or more legs. Could also be used for other transport vehicles such as train or bus etc.O
               ↳ CarrierDesigCodeAirline code assigned to a carrier. Either ICAO-defined 3-character code or IATA-defined 2-character code.O<CarrierDesigCode>PS</CarrierDesigCode>
               ↳ OperatingCarrierFlightNumberTextThe numerical designation of a flight as it is marketed by a carrier.O<OperatingCarrierFlightNumberText>775</OperatingCarrierFlightNumberText>
            ↳ PaxSegmentIDUniquely identifies a Passenger Segment within the context of one message.M<PaxSegmentID>SEG1</PaxSegmentID>
      ↳ PriceClassListPrice Class data list definition.O
         ↳ PriceClassA price point within a particular Cabin Type and 'Fare Families'.M
            ↳ CabinTypeType of compartment of an aircraft, offering specific services.O
               ↳ CabinTypeCode

Cabin Type Code.

Supported values:

  • C – Business,
  • W – Premium,
  • Y – Economy
O<CabinTypeCode>Y</CabinTypeCode>
               ↳ CabinTypeNameName given to a cabin compartment.O<CabinTypeName>Economy</CabinTypeName>
            ↳ DescAn account or representation of the certain or major aspects, characteristics, or features of a person, object, or event.O
               ↳ DescTextDescription text value.O<DescText>CHANGES:Changes not allowed</DescText>
            ↳ FareBasisCodeFare basis code.O<FareBasisCode>X002LLU1</FareBasisCode>
            ↳ NamePrice class name.M<Name>ECONOMY LITE</Name>
            ↳ PriceClassIDUniquely Identifies a Price Class within the context of one message.O<PriceClassID>PC1</PriceClassID>
      ↳ ServiceDefinitionListService Definition data list definition.O
         ↳ ServiceDefinitionDescription and characteristics of a non-flight product or service that can be separately sold and delivered. E.g. bag, seat, meal on a flight.M
            ↳ DescAn account or representation of the certain or major aspects, characteristics, or features of a person, object, or event.M
               ↳ DescTextDescription text value.O<DescText>Baggage included in fare</DescText>
            ↳ NameService name.M<Name>BagIncInFare</Name>
            ↳ ServiceDefinitionAssociationThe choice to determine if the information of this ServiceDefinition needs to be extended with specific Bag or Seat characteristics, or whether the ServiceDefinition is used as a bundle of further ServiceDefinitions.O
               ↳ BaggageAllowanceRefIDReference to a Baggage Allowance ID within this message.M<BaggageAllowanceRefID>CB1</BaggageAllowanceRefID>
            ↳ ServiceDefinitionIDUniquely Identifies a Service Definition within the context of one message.M<ServiceDefinitionID>InclBag1</ServiceDefinitionID>
   ↳ OffersGroupOffers grouped by Carrier.M
      ↳ CarrierOffersGrouping of Offers returned by a single ORA.M
         ↳ OfferA proposal to sell a specific set of products or Services under specific conditions, for a certain price. Can be the response to a shopping request.O
            ↳ JourneyOverviewSummary of proposed Journey information in the context of this specific Offer.O
               ↳ JourneyPriceClassPrice class information per Journey.M
                  ↳ PaxJourneyRefIDReference to a Passenger Journey within the context of this message.M<PaxJourneyRefID>FL1</PaxJourneyRefID>
            ↳ OfferExpirationTimeLimitDateTime

The length of time an offer will persist in an airline's offer management system for use in subsequent transactions. Upon expiry, the expectation is that the offer is no longer retrievable and the shopping process must begin again.

Time zone = GMT0

O<OfferExpirationTimeLimitDateTime>2020-09-21T15:05:50</OfferExpirationTimeLimitDateTime>
            ↳ OfferIDCarrier assigned ID which uniquely identifies a specific Offer across several messages.M<OfferID>97482365-a144-4009-b280-6a8cddf59f42</OfferID>
            ↳ OfferItemA priced grouping of one or more services within an Offer.M
               ↳ FareDetailThe amount charged by the carrier for the carriage of a passenger and his allowable free baggage.O
                  ↳ FareComponentA portion of an itinerary between two consecutive fare construction points. If the journey has only one fare component, the points of origin and destination are the only fare construction pointsO
                     ↳ FareBasisCodeIndicates how the fare basis was applied.O<FareBasisCode>X002LLE2</FareBasisCode>
                     ↳ PaxSegmentRefIDReference to a Pax Segment ID.O<PaxSegmentRefID>SEG1</PaxSegmentRefID>
                     ↳ PriceThe amount of money expected, required, or given in payment for somethingO
                        ↳ BaseAmount

Total Base Fare Amount.

Attribute: Currency Code

O<BaseAmount CurCode="NUC">38.00</BaseAmount>
                           ↳ SurchargeAmount added on to a usual charge for a specific product, purpose, or service.O
                              ↳ BreakdownAmount added on to a charge for a specific product, purpose, or service.O
                                 ↳ Amount

Fee Amount.

Attribute: Currency Code

O<Amount CurCode="NUC">5</Amount>
                                 ↳ DesigTextFee designator code.O<DesigText>Q</DesigText>
                     ↳ PriceClassRefIDA price point within a particular Cabin Type (sometimes referred to as 'Fare Families').O<PriceClassRefID>PC1</PriceClassRefID>
                     ↳ RBDReservation Booking Designator. A categorization used to facilitate access to inventory, application of filed fares, and to identify cabin entitlement. Identified using a single alpha character.O
                        ↳ RBD_CodeCode used to identify a particular RBDO<RBD_Code>X</RBD_Code>
                  ↳ FarePriceTypeThe type of fair price applied to a Fare DetailM
                     ↳ FarePriceTypeCodeIndicates if the fare price provided is a filed amount, net amount, or a sell amount.M<FarePriceTypeCode>Filed</FarePriceTypeCode>
                     ↳ PriceThe amount of money expected, required, or given in payment for somethingM
                        ↳ BaseAmount

Total Base Fare Amount.

Attribute: Currency Code

O<BaseAmount CurCode="EUR">76.00</BaseAmount>
                        ↳ CurConversionThe result of converting one currency into another currency.O
                           ↳ Amount

Amount and currency specified in the converted currency.

Attribute: Currency Code

M<Amount CurCode="NUC">177.22</Amount>
                           ↳ ConversionRateDefines the rate used to convert the local currency into the billing currency.M<ConversionRate>0.846387</ConversionRate>
                           ↳ LocalAmount

Amount and currency as specified by the local Country.

Attribute: Currency Code

M<LocalAmount CurCode="EUR">150.00</LocalAmount>
               ↳ OfferItemIDCarrier assigned ID which exists uniquely within an Offer.M<OfferItemID>97482365-a144-4009-b280-6a8cddf59f42-PAX1</OfferItemID>
                  ↳ PriceThe amount of money expected, required, or given in payment for something .M
                     ↳ BaseAmount

Total Base Fare Amount.

Attribute: Currency Code

O<BaseAmount CurCode="EUR">76.00</BaseAmount>
                  ↳ TaxSummaryTax summary information.O
                     ↳ TaxA compulsory contribution to state revenue, levied by the government on workers' income and business profits or added to the cost of some goods, services, and transactions.O
                        ↳ Amount

Tax amount.

Attribute: Currency Code

M<Amount CurCode="EUR">39.02</Amount>
                        ↳ CountryA nation with its own government, occupying a particular territory.O
                           ↳ CountryCodeISO Country CodeO<CountryCode>AE</CountryCode>
                        ↳ QualifierCodeUsed to specify if current, paid, additional taxes Refer to IATA PADIS Code list data element 5305.O<QualifierCode>700</QualifierCode>
                        ↳ TaxCodeIATA TTBS Tax Code.O<TaxCode>YK</TaxCode>
                     ↳ TotalTaxAmount

Total of all applicable tax amounts included in the price. If tax breakdowns are provided, this amount should match the sum of the tax breakdown amounts.

Attribute: Currency Code

O<TotalTaxAmount CurCode="EUR">61.33</TotalTaxAmount>
                  ↳ TotalAmount

Total monetary price amount, including all tax, surcharge, and fee amounts.

Attribute: Currency Code

O<TotalAmount CurCode="EUR">137.33</TotalAmount>
                  ↳ ServiceThe instance of a specific flight or Service Definition as it has been offered (and eventually ordered and consumed) in the context of a specific Offer and/or Order.M
                     ↳ PaxRefIDReference to a Passenger ID within this message. The Passenger is the recipient entitled to receive/consume the Service(s) offered by the Airline, whether the Service(s) are flight-related or not.M<PaxRefID>PAX1</PaxRefID>
                     ↳ ServiceAssociationsReferences to the details of this Service. May include either Passenger Journeys, a Service Definition, or a Selected Seat.M

                        ↳ PaxJourneyRefID

Reference to one Journey in the Datalists that are being sold as part of this OfferItem/Service.C<PaxJourneyRefID>FL1</PaxJourneyRefID>
                        ↳ ServiceDefinitionRefAirline specific definition of a product or service (excluding flights) that can be separately sold and delivered. e.g. bag, seat, meal on a flightC
                           ↳ BaggageFlightAssociations
O
                              ↳ PaxSegmentRefIDReference to a Dated Operating LegM<PaxSegmentRefID>SEG1</PaxSegmentRefID>
                           ServiceDefinitionRefIDReferences a Service Definition ID within this message.M<ServiceDefinitionRefID>InclBag1</ServiceDefinitionRefID>
                     ↳ ServiceIDUniquely Identifies a Service within the context of one message.M<ServiceID>PAX1_FL1_FL2</ServiceID>
            ↳ OwnerCodeAirline code assigned to a carrier.M<OwnerCode>PS</OwnerCode>
            ↳ PTC_OfferParametersPassenger Type summary information for an offerO
               ↳ PricedPaxNumberNumber of Passenger(s) for associated passenger type.O<PricedPaxNumber>1</PricedPaxNumber>
               ↳ PTC_PricedCodeActual passenger type code used for pricing.O<PTC_PricedCode>ADT</PTC_PricedCode>
               ↳ PTC_RequestedCodeRequested passenger type code for pricing.O<PTC_RequestedCode>ADT</PTC_RequestedCode>
               ↳ RequestedPaxNumberNumber of Passenger(s) for associated passenger type.O<RequestedPaxNumber>2</RequestedPaxNumber>
            ↳ TotalPriceThe amount of money expected, required, or given in payment for something.O
               ↳ TotalAmountTotal monetary price amount, including all tax, surcharge, and fee amounts.O<TotalAmount CurCode="EUR">137.33</TotalAmount>
   ↳ ShoppingResponseFacilitates the tracking of what was Offered and contains an identifier unique to the source Airline for a set of product Offers returned in response to a shopping request.O
      ↳ ShoppingResponseRefIDReference to unique shopping session response ID, as provided in the airline's previous shopping response.O<ShoppingResponseRefID>c838fd37-7fc6-457b-8fe6-a98567c5c012</ShoppingResponseRefID>

AirShopping Error/Validation Checks

 Click here to expand...
PADIS Error CodePADIS Error TextUse Cases
System errors
911Unable to process - system error / Invalid queryInvalid query
486UnknownThe equivalent of -1 error
304System Temporarily unavailableThe system is not available/HOST problem
916EDIFACT version not supportedNot supported NDC service version.
Agent authorization errors
368Not authorizedWrong agent authentication key. Agent is inactive
79AInvalid office identificationOID is missing or incorrect
Query errors
729Invalid currency codeCurrency is not supported by the System
405No Service Between Requested Cities/Airports for ParametersAirport/City code does not exist or missing
914Invalid format/data - data does not match syntax rulesIncorrect date format
102Invalid/Missing Departure DateDeparture date is missing in the query
914Invalid format/data - data does not match syntax rulesArrival date is missing in the query
438The request is the outside system date range for this carrier within this systemOne of the requested dates are more than 360 days in future
76HUnable to process the requested optionInvalid cabin parameter or parameter not supported
912Incomplete message - data missing in queryIn case inconsistent query
324Number of infants exceeds the maximum allowed per adult passengerIn case INF validation fails
143Invalid or Ineligible Passenger Type CodeInvalid PAX type
68Max number of passenger per request exceededUser requests more than 9 PAX with a seat
132Exceeds Maximum Number of SegmentsAgent requests more than two segments
405No Service Between Requested Cities/Airports for ParametersRout validation fails.
719No fares availableNo fares on the requested O@D and dates
405No Service Between Requested Cities/Airports for ParametersNo availability on the requested dates
911Unable to process - system error / Unaccompanied minors are not allowedUnaccompanied minors are not allowed
411Flight Does Not Operate on Date RequestedOn the requested dates flights are not available or sold out.
385Mutually exclusive optional parametersSEA/STU and Corp code in the same query
710Corporate name not foundThe system cant find the requested corporate ID




© 2021 SOLRING HOLDINGS LIMITED. All rights reserved.