% ATC KB is a PSOA RuleML Knowledge Base for computing the aircraft separation % during arrivals and departures, as mandated by ICAO, FAA, RECAT Regulations. % % Copyright (C) 2018-2019 Theodoros Mitsikas, Sofia Almpani % % Licensed under the Non-Profit Open Software License 3.0 (NPOSL-3.0). % % You should have received a copy of the Non-Profit Open Software License 3.0 % along with this program. If not, see https://opensource.org/licenses/NPOSL-3.0. % % Requires PSOATransRun version 1.4.2 or later RuleML ( Prefix(: ) Prefix(icao: ) Prefix(faa: ) % Two different RECAT definitions % Prefix(recat: ) Prefix(recat: ) Prefix(isopl: ) Prefix(math: ) Prefix(not: ) Import() Import() Assert ( % An ATC regulations Knowledge Base % Version: 2019-06-16 % (ICAO, FAA, RECAT) Categorization is needed for Separation %%%%%%%%%%%%%%%%%%%%%%%%% %% ICAO Categorization %% %%%%%%%%%%%%%%%%%%%%%%%%% Forall ?a ( :AircraftIcaoCategory(?a icao:Light) :- And(?a#:Aircraft(:mtom->?w) math:lessEq(?w 7000)) ) Forall ?a ( :AircraftIcaoCategory(?a icao:Medium) :- And(?a#:Aircraft(:mtom->?w) math:lessThan(?w 136000) math:greaterThan(?w 7000)) ) Forall ?a ( :AircraftIcaoCategory(?a icao:Heavy) :- And(?a#:Aircraft(:mtom->?w) math:greaterEq(?w 136000) not:Naf(:AircraftIcaoCategory(?a icao:Super)) %External(isopl:generic_not_eq(?a a388)) %External(isopl:generic_not_eq(?a a38f)) ) ) :AircraftIcaoCategory(:a388 icao:Super) :AircraftIcaoCategory(:a38f icao:Super) %%%%%%%%%%%%%%%%%%%%% %% ICAO Separation %% %%%%%%%%%%%%%%%%%%%%% Forall ?x ?y ( :icaoSeparation(:leader->?x :follower->?y :miles->:Mrs):- Or( And(:AircraftIcaoCategory(?x icao:Medium) :AircraftIcaoCategory(?y icao:Medium)) And(:AircraftIcaoCategory(?x icao:Medium) :AircraftIcaoCategory(?y icao:Heavy)) And( :AircraftIcaoCategory(?x icao:Light) ?y#:Aircraft) And( :AircraftIcaoCategory(?y icao:Super) ?x#:Aircraft) ) ) Forall ?x ?y ( :icaoSeparation(:leader->?x :follower->?y :miles->4):- And(:AircraftIcaoCategory(?x icao:Heavy) :AircraftIcaoCategory(?y icao:Heavy)) ) Forall ?x ?y ( :icaoSeparation(:leader->?x :follower->?y :miles->5):- Or(And(:AircraftIcaoCategory(?x icao:Heavy) :AircraftIcaoCategory(?y icao:Medium)) And(:AircraftIcaoCategory(?x icao:Medium) :AircraftIcaoCategory(?y icao:Light)) ) ) Forall ?x ?y ( :icaoSeparation(:leader->?x :follower->?y :miles->6):- Or(And(:AircraftIcaoCategory(?x icao:Heavy) :AircraftIcaoCategory(?y icao:Light)) And(:AircraftIcaoCategory(?x icao:Super) :AircraftIcaoCategory(?y icao:Heavy)) ) ) Forall ?x ?y ( :icaoSeparation(:leader->?x :follower->?y :miles->7):- And(:AircraftIcaoCategory(?x icao:Super) :AircraftIcaoCategory(?y icao:Medium)) ) Forall ?x ?y ( :icaoSeparation(:leader->?x :follower->?y :miles->8):- And(:AircraftIcaoCategory(?x icao:Super) :AircraftIcaoCategory(?y icao:Light)) ) %%%%%%%%%%%%%%%%%%%%%%%%% %%% FAA Categorization %% %%%%%%%%%%%%%%%%%%%%%%%%% %Forall ?a ( %:AircraftFAACategory(?a faa:Small) :- %And(?a#:Aircraft(:mtow->?w) %math:lessEq(?w 41000)) %) %Forall ?a ( %:AircraftFAACategory(?a faa:Large) :- %And(?a#:Aircraft(:mtow->?w ) %math:greaterThan(?w 41000) %math:lessThan(?w 300000) %External(isopl:generic_not_eq(?a :b752)) %External(isopl:generic_not_eq(?a :b753)) %) %) %Forall ?a ( %:AircraftFAACategory(?a faa:Heavy) :- %And(?a#:Aircraft(:mtow->?w ) %math:greaterEq(?w 300000) %External(isopl:generic_not_eq(?a :a388)) %External(isopl:generic_not_eq(?a :a38f)) %External(isopl:generic_not_eq(?a :a225)) %) %) %Forall ?a ( %:AircraftFAACategory(?a faa:Super) :- %And( %?a#:Aircraft %Or(?a=:a388 %?a=:a38f %?a=:a225 %) %) %) %Forall ?a ( %:AircraftFAACategory(?a faa:B757) :- %And( %?a#:Aircraft %Or( %?a=:b752 %?a=:b753 %) %) %) %%%%%%%%%%%%%%%%%%%% %% FAA Separation %% %%%%%%%%%%%%%%%%%%%% %Forall ?x ?y ( %:faaSeparation(:leader->?x :follower->?y :miles->:Mrs):- %Or( %And(:AircraftFAACategory(?x faa:Large) %:AircraftFAACategory(?y faa:Large)) %And(:AircraftFAACategory(?x faa:Large) %:AircraftFAACategory(?y faa:B757)) %And(:AircraftFAACategory(?x faa:Large) %:AircraftFAACategory(?y faa:Heavy)) %And( %:AircraftFAACategory(?x faa:Small) %?y#:Aircraft) %And( %:AircraftFAACategory(?y faa:Super) %?x#:Aircraft) %) %) %Forall ?x ?y ( %:faaSeparation(:leader->?x :follower->?y :miles->4):- %Or( %And(:AircraftFAACategory(?x faa:Large) %:AircraftFAACategory(?y faa:Small)) %And(:AircraftFAACategory(?x faa:B757) %:AircraftFAACategory(?y faa:Large)) %And(:AircraftFAACategory(?x faa:B757) %:AircraftFAACategory(?y faa:B757)) %And(:AircraftFAACategory(?x faa:B757) %:AircraftFAACategory(?y faa:Heavy)) %And(:AircraftFAACategory(?x faa:Heavy) %:AircraftFAACategory(?y faa:Heavy)) %) %) %Forall ?x ?y ( %:faaSeparation(:leader->?x :follower->?y :miles->5):- %Or( %And(:AircraftFAACategory(?x faa:B757) %:AircraftFAACategory(?y faa:Small)) %And(:AircraftFAACategory(?x faa:Heavy) %:AircraftFAACategory(?y faa:Large)) %And(:AircraftFAACategory(?x faa:Heavy) %:AircraftFAACategory(?y faa:B757)) %) %) %Forall ?x ?y ( %:faaSeparation(:leader->?x :follower->?y :miles->6):- %Or( %And(:AircraftFAACategory(?x faa:Heavy) %:AircraftFAACategory(?y faa:Small)) %And(:AircraftFAACategory(?x faa:Super) %:AircraftFAACategory(?y faa:Heavy)) %) %) %Forall ?x ?y ( %:faaSeparation(:leader->?x :follower->?y :miles->7):- %Or( %And(:AircraftFAACategory(?x faa:Super) %:AircraftFAACategory(?y faa:Large)) %And(:AircraftFAACategory(?x faa:Super) %:AircraftFAACategory(?y faa:B757)) %) %) %Forall ?x ?y ( %:faaSeparation(:leader->?x :follower->?y :miles->8):- %And(:AircraftFAACategory(?x faa:Super) %:AircraftFAACategory(?y faa:Small)) %) %%%%%%%%%%%%%%%%%%%%%%%%%% %% RECAT Categorization %% %%%%%%%%%%%%%%%%%%%%%%%%%% %Forall ?a ( %:AircraftRecatCategory(?a recat:A) :- %And(?a#:Aircraft(:mtow->?w :wingspan->?s) %math:greaterEq(?w 300000) %math:greaterThan(?s 245)) %) %Forall ?a ( %:AircraftRecatCategory(?a recat:B) :- %And(?a#:Aircraft(:mtow->?w :wingspan->?s) %math:greaterEq(?w 300000) %math:greaterThan(?s 175) %math:lessEq(?s 245)) %) %Forall ?a ( %:AircraftRecatCategory(?a recat:C) :- %And(?a#:Aircraft(:mtow->?w :wingspan->?s) %math:greaterEq(?w 300000) %math:greaterThan(?s 125) %math:lessEq(?s 175)) %) %Forall ?a ( %:AircraftRecatCategory(?a recat:D) :- %Or(And(?a#:Aircraft(:mtow->?w :wingspan->?s) %math:lessThan(?w 300000) %math:greaterThan(?s 125) %math:lessEq(?s 175)) %% And(?a#:Aircraft(:wingspan->?s) % modeled according to Advisory Circular 90-23G %% math:greaterThan(?s 90) % overlaps with category F, query: %% math:lessEq(?s 125)) % > And (:AircraftRecatCategory(?a ?C1) :AircraftRecatCategory(?a ?C2) External(isopl:generic_not_eq(?C1 ?C2))) %And(?a#:Aircraft(:mtow->?w :wingspan->?s) % modeled according to Order JO 7110.659C %math:greaterThan(?w 41000) % known incompleteness when 41000 pounds, 90 < wingspan < 125 %math:greaterThan(?s 90) %math:lessEq(?s 125)) %) %) %Forall ?a ( %:AircraftRecatCategory(?a recat:E) :- %And(?a#:Aircraft(:mtow->?w :wingspan->?s) %math:greaterThan(?w 41000) %math:greaterThan(?s 65) %math:lessEq(?s 90)) %) %Forall ?a ( %:AircraftRecatCategory(?a recat:F) :- %Or(And(?a#:Aircraft(:mtow->?w :wingspan->?s) %math:lessThan(?w 41000) %math:lessEq(?s 125)) %And(?a#:Aircraft(:mtow->?w) %math:lessThan(?w 15500)) %) %) %%%%%%%%%%%%%%%%%%%%%% %% RECAT Separation %% %%%%%%%%%%%%%%%%%%%%%% %Forall ?x ?y ( %:recatSeparation(:leader->?x :follower->?y :miles->:Mrs):- %Or( %And( %Or( %:AircraftRecatCategory(?x recat:F) %:AircraftRecatCategory(?x recat:E) %) %?y#:Aircraft) %And(:AircraftRecatCategory(?x recat:D) %:AircraftRecatCategory(?y recat:E)) %And(:AircraftRecatCategory(?x recat:D) %:AircraftRecatCategory(?y recat:D)) %And(:AircraftRecatCategory(?x recat:D) %:AircraftRecatCategory(?y recat:C)) %And(:AircraftRecatCategory(?x recat:D) %:AircraftRecatCategory(?y recat:B)) %And(:AircraftRecatCategory(?x recat:C) %:AircraftRecatCategory(?y recat:C)) %And(:AircraftRecatCategory(?x recat:C) %:AircraftRecatCategory(?y recat:B)) %) %) %Forall ?x ?y ( %:recatSeparation(:leader->?x :follower->?y :miles->3):- %And(:AircraftRecatCategory(?x recat:B) %:AircraftRecatCategory(?y recat:B)) %) %Forall ?x ?y ( %:recatSeparation(:leader->?x :follower->?y :miles->3.5):- %Or( %And(:AircraftRecatCategory(?x recat:C) %:AircraftRecatCategory(?y recat:E)) %And(:AircraftRecatCategory(?x recat:C) %:AircraftRecatCategory(?y recat:D)) %) %) %Forall ?x ?y ( %:recatSeparation(:leader->?x :follower->?y :miles->4):- %Or( %And(:AircraftRecatCategory(?x recat:D) %:AircraftRecatCategory(?y recat:F)) %And(:AircraftRecatCategory(?x recat:B) %:AircraftRecatCategory(?y recat:C)) %) %) %Forall ?x ?y ( %:recatSeparation(:leader->?x :follower->?y :miles->5):- %Or( %And(:AircraftRecatCategory(?x recat:B) %:AircraftRecatCategory(?y recat:E)) %And(:AircraftRecatCategory(?x recat:B) %:AircraftRecatCategory(?y recat:D)) %And(:AircraftRecatCategory(?x recat:A) %:AircraftRecatCategory(?y recat:B)) %) %) %Forall ?x ?y ( %:recatSeparation(:leader->?x :follower->?y :miles->6):- %Or( %And(:AircraftRecatCategory(?x recat:A) %:AircraftRecatCategory(?y recat:C)) %And(:AircraftRecatCategory(?x recat:C) %:AircraftRecatCategory(?y recat:F)) %) %) %Forall ?x ?y ( %:recatSeparation(:leader->?x :follower->?y :miles->7):- %Or( %And(:AircraftRecatCategory(?x recat:A) %:AircraftRecatCategory(?y recat:E)) %And(:AircraftRecatCategory(?x recat:A) %:AircraftRecatCategory(?y recat:D)) %And(:AircraftRecatCategory(?x recat:B) %:AircraftRecatCategory(?y recat:F)) %) %) %Forall ?x ?y ( %:recatSeparation(:leader->?x :follower->?y :miles->8):- %And(:AircraftRecatCategory(?x recat:A) %:AircraftRecatCategory(?y recat:F)) %) %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %% Sample Aircraft Characterizations %% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% :be9l#:Aircraft(:mtom->4218.41 :mtow->9300.0 :wingspan->45.92 :appSpeed->100.0) :a319#:Aircraft(:mtom->76499.71 :mtow->168653.0 :wingspan->117.45 :appSpeed->126.0) :b788#:Aircraft(:mtom->227930.17 :mtow->502500.0 :wingspan->197.25 :appSpeed->140.0) :a388#:Aircraft(:mtom->575000.0 :mtow->1267658.0 :wingspan->261.65 :appSpeed->145.0) :e190#:Aircraft(:mtom->51799.8 :mtow->114199.0 :wingspan->94.25 :appSpeed->123.5) %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %% Comprehensive Aircraft Characterizations %% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %:sace#:Aircraft(:mtom->467.2 %:mtow->1030.0 %:wingspan->27.2916666666667 %:appSpeed->49.4) %:acro#:Aircraft(:mtom->612.35 %:mtow->1350.0 %:wingspan->19.5833333333333 %:appSpeed->55.9) %:a500#:Aircraft(:mtom->3175.15 %:mtow->7000.0 %:wingspan->44.0 %:appSpeed->97.5) %:a700#:Aircraft(:mtom->3447.3 %:mtow->7600.0 %:wingspan->44.0 %:appSpeed->94.9) %:g222#:Aircraft(:mtom->28000.26 %:mtow->61730.0 %:wingspan->94.1666666666667 %:appSpeed->109.2) %:la60#:Aircraft(:mtom->1745.88 %:mtow->3849.0 %:wingspan->38.8333333333333 %:appSpeed->61.1) %:am3#:Aircraft(:mtom->1700.06 %:mtow->3748.0 %:wingspan->38.5 %:appSpeed->61.1) %:l90#:Aircraft(:mtom->1900.55 %:mtow->4190.0 %:wingspan->39.3333333333333 %:appSpeed->65.0) %:m346#:Aircraft(:mtom->9500.49 %:mtow->20945.0 %:wingspan->31.8916666666667 %:appSpeed->123.5) %:m308#:Aircraft(:mtom->650.0 %:mtow->1433.0 %:wingspan->32.8333333333333 %:appSpeed->61.1) %:m326#:Aircraft(:mtom->3764.82 %:mtow->8300.0 %:wingspan->34.6666666666667 %:appSpeed->102.7) %:m339#:Aircraft(:mtom->5896.7 %:mtow->13000.0 %:wingspan->35.625 %:appSpeed->104.0) %:f260#:Aircraft(:mtom->1300.0 %:mtow->2866.0 %:wingspan->26.9791666666667 %:appSpeed->74.1) %:ab11#:Aircraft(:mtom->769.75 %:mtow->1697.0 %:wingspan->35.1666666666667 %:appSpeed->46.8) %:ab15#:Aircraft(:mtom->1001.08 %:mtow->2207.0 %:wingspan->35.1666666666667 %:appSpeed->52.0) %:ab18#:Aircraft(:mtom->889.95 %:mtow->1962.0 %:wingspan->35.375 %:appSpeed->52.0) %:ab95#:Aircraft(:mtom->699.89 %:mtow->1543.0 %:wingspan->34.1875 %:appSpeed->33.8) %:jcom#:Aircraft(:mtom->7620.35 %:mtow->16800.0 %:wingspan->44.7916666666667 %:appSpeed->128.7) %:ac50#:Aircraft(:mtom->2721.55 %:mtow->6000.0 %:wingspan->51.7083333333333 %:appSpeed->76.7) %:ac50#:Aircraft(:mtom->2834.95 %:mtow->6250.0 %:wingspan->49.0416666666667 %:appSpeed->76.7) %:ac50#:Aircraft(:mtom->3061.75 %:mtow->6750.0 %:wingspan->49.0416666666667 %:appSpeed->76.7) %:ac50#:Aircraft(:mtom->3061.75 %:mtow->6750.0 %:wingspan->49.0416666666667 %:appSpeed->76.7) %:ac52#:Aircraft(:mtom->2585.48 %:mtow->5700.0 %:wingspan->49.0416666666667 %:appSpeed->64.35) %:ac56#:Aircraft(:mtom->2721.55 %:mtow->6000.0 %:wingspan->49.0416666666667 %:appSpeed->82.42) %:ac56#:Aircraft(:mtom->2948.35 %:mtow->6500.0 %:wingspan->51.7083333333333 %:appSpeed->76.7) %:ac56#:Aircraft(:mtom->3401.94 %:mtow->7500.0 %:wingspan->49.0416666666667 %:appSpeed->76.7) %:ac68#:Aircraft(:mtom->3175.15 %:mtow->7000.0 %:wingspan->49.0416666666667 %:appSpeed->76.7) %:ac68#:Aircraft(:mtom->3401.94 %:mtow->7500.0 %:wingspan->51.7083333333333 %:appSpeed->76.7) %:ac68#:Aircraft(:mtom->3628.74 %:mtow->8000.0 %:wingspan->49.0416666666667 %:appSpeed->76.7) %:ac6l#:Aircraft(:mtom->3855.54 %:mtow->8500.0 %:wingspan->49.0416666666667 %:appSpeed->76.7) %:ac80#:Aircraft(:mtom->4059.65 %:mtow->8950.0 %:wingspan->44.0583333333333 %:appSpeed->97.5) %:ac80#:Aircraft(:mtom->4263.77 %:mtow->9400.0 %:wingspan->44.0583333333333 %:appSpeed->97.5) %:ac80#:Aircraft(:mtom->4263.77 %:mtow->9400.0 %:wingspan->44.0583333333333 %:appSpeed->97.5) %:ac80#:Aircraft(:mtom->4263.77 %:mtow->9400.0 %:wingspan->46.55 %:appSpeed->100.1) %:ac6l#:Aircraft(:mtom->4082.33 %:mtow->9000.0 %:wingspan->44.0833333333333 %:appSpeed->97.5) %:ac90#:Aircraft(:mtom->4649.32 %:mtow->10250.0 %:wingspan->46.55 %:appSpeed->100.1) %:ac90#:Aircraft(:mtom->4683.34 %:mtow->10325.0 %:wingspan->46.55 %:appSpeed->100.1) %:ac90#:Aircraft(:mtom->4683.34 %:mtow->10325.0 %:wingspan->52.1225 %:appSpeed->97.5) %:ac90#:Aircraft(:mtom->4853.44 %:mtow->10700.0 %:wingspan->52.1225 %:appSpeed->100.1) %:ac90#:Aircraft(:mtom->4683.34 %:mtow->10325.0 %:wingspan->52.1225 %:appSpeed->97.5) %:ac95#:Aircraft(:mtom->5080.23 %:mtow->11200.0 %:wingspan->52.1225 %:appSpeed->100.1) %:ac95#:Aircraft(:mtom->5329.71 %:mtow->11750.0 %:wingspan->52.1225 %:appSpeed->100.1) %:ac72#:Aircraft(:mtom->3401.94 %:mtow->7500.0 %:wingspan->51.7083333333333 %:appSpeed->80.6) %:clb1#:Aircraft(:mtom->1723.65 %:mtow->3800.0 %:wingspan->34.75 %:appSpeed->60.0) %:sgup#:Aircraft(:mtom->77110.7 %:mtow->170000.0 %:wingspan->156.25 %:appSpeed->130.0) %:ae45#:Aircraft(:mtom->1599.82 %:mtow->3527.0 %:wingspan->46.2083333333333 %:appSpeed->78.0) %:l159#:Aircraft(:mtom->8000.01 %:mtow->17637.0 %:wingspan->31.2916666666667 %:appSpeed->130.0) %:l29#:Aircraft(:mtom->3539.83 %:mtow->7804.0 %:wingspan->33.75 %:appSpeed->92.3) %:l39#:Aircraft(:mtom->4700.12 %:mtow->10362.0 %:wingspan->31.0416666666667 %:appSpeed->109.2) %:l59#:Aircraft(:mtom->6999.84 %:mtow->15432.0 %:wingspan->31.2916666666667 %:appSpeed->130.0) %:l60#:Aircraft(:mtom->1559.9 %:mtow->3439.0 %:wingspan->45.7916666666667 %:appSpeed->36.4) %:ar11#:Aircraft(:mtom->566.99 %:mtow->1250.0 %:wingspan->36.0 %:appSpeed->49.4) %:ar15#:Aircraft(:mtom->929.86 %:mtow->2050.0 %:wingspan->37.5 %:appSpeed->59.8) %:ch7a#:Aircraft(:mtom->598.74 %:mtow->1320.0 %:wingspan->35.0 %:appSpeed->42.9) %:n262#:Aircraft(:mtom->10301.08 %:mtow->22710.0 %:wingspan->71.8333333333333 %:appSpeed->89.7) %:s601#:Aircraft(:mtom->6599.77 %:mtow->14550.0 %:wingspan->42.2083333333333 %:appSpeed->118.0) %:s210#:Aircraft(:mtom->56000.51 %:mtow->123460.0 %:wingspan->112.5 %:appSpeed->127.0) %:at3p#:Aircraft(:mtom->2267.96 %:mtow->5000.0 %:wingspan->45.0 %:appSpeed->74.1) %:at3t#:Aircraft(:mtom->3492.66 %:mtow->7700.0 %:wingspan->45.1041666666667 %:appSpeed->74.1) %:at3t#:Aircraft(:mtom->4159.44 %:mtow->9170.0 %:wingspan->51.0833333333333 %:appSpeed->74.1) %:at5t#:Aircraft(:mtom->4263.77 %:mtow->9400.0 %:wingspan->52.0 %:appSpeed->76.7) %:at5t#:Aircraft(:mtom->4753.65 %:mtow->10480.0 %:wingspan->52.0 %:appSpeed->76.7) %:at5t#:Aircraft(:mtom->4753.65 %:mtow->10480.0 %:wingspan->49.1041666666667 %:appSpeed->76.7) %:at5t#:Aircraft(:mtom->4354.49 %:mtow->9600.0 %:wingspan->52.0 %:appSpeed->72.8) %:at6t#:Aircraft(:mtom->5669.9 %:mtow->12500.0 %:wingspan->56.0 %:appSpeed->92.3) %:at8t#:Aircraft(:mtom->7257.48 %:mtow->16000.0 %:wingspan->59.25 %:appSpeed->102.7) %:at8t#:Aircraft(:mtom->7257.48 %:mtow->16000.0 %:wingspan->59.25 %:appSpeed->102.7) %:at8t#:Aircraft(:mtom->7257.48 %:mtow->16000.0 %:wingspan->59.25 %:appSpeed->91.0) %:bcs1#:Aircraft(:mtom->60781.38 %:mtow->134000.0 %:wingspan->115.083333333333 %:appSpeed->130.0) %:bcs3#:Aircraft(:mtom->67585.26 %:mtow->149000.0 %:wingspan->115.083333333333 %:appSpeed->135.0) %:a30b#:Aircraft(:mtom->157499.52 %:mtow->347227.0 %:wingspan->147.08 %:appSpeed->137.0) %:a30b#:Aircraft(:mtom->141999.81 %:mtow->313056.0 %:wingspan->147.08 %:appSpeed->137.0) %:a30b#:Aircraft(:mtom->164998.76 %:mtow->363760.0 %:wingspan->147.08 %:appSpeed->137.0) %:a30b#:Aircraft(:mtom->164998.76 %:mtow->363760.0 %:wingspan->147.08 %:appSpeed->137.0) %:a306#:Aircraft(:mtom->164998.76 %:mtow->363760.0 %:wingspan->147.138333333333 %:appSpeed->137.0) %:a306#:Aircraft(:mtom->170499.48 %:mtow->375887.0 %:wingspan->147.138333333333 %:appSpeed->137.0) %:a306#:Aircraft(:mtom->171698.32 %:mtow->378530.0 %:wingspan->147.138333333333 %:appSpeed->137.0) %:a3st#:Aircraft(:mtom->154998.41 %:mtow->341713.0 %:wingspan->147.138333333333 %:appSpeed->137.0) %:a3st#:Aircraft(:mtom->226997.67 %:mtow->500444.2 %:wingspan->197.833333333333 %:appSpeed->137.0) %:a310#:Aircraft(:mtom->143999.7 %:mtow->317465.0 %:wingspan->144.029166666667 %:appSpeed->139.0) %:a310#:Aircraft(:mtom->163999.5 %:mtow->361557.0 %:wingspan->144.029166666667 %:appSpeed->139.0) %:a318#:Aircraft(:mtom->67999.85 %:mtow->149914.0 %:wingspan->111.88 %:appSpeed->121.0) %:a319#:Aircraft(:mtom->76499.71 %:mtow->168653.0 %:wingspan->111.88 %:appSpeed->126.0) %:a319#:Aircraft(:mtom->76499.71 %:mtow->168653.0 %:wingspan->117.45 %:appSpeed->126.0) %:a319#:Aircraft(:mtom->75500.0 %:mtow->166449.0 %:wingspan->117.45 %:appSpeed->126.0) %:a320#:Aircraft(:mtom->78000.2 %:mtow->171961.0 %:wingspan->111.88 %:appSpeed->136.0) %:a320#:Aircraft(:mtom->78000.2 %:mtow->171961.0 %:wingspan->117.45 %:appSpeed->136.0) %:a320#:Aircraft(:mtom->78999.92 %:mtow->174165.0 %:wingspan->117.45 %:appSpeed->136.0) %:a321#:Aircraft(:mtom->88999.81 %:mtow->196211.0 %:wingspan->111.88 %:appSpeed->140.0) %:a321#:Aircraft(:mtom->88999.81 %:mtow->196211.0 %:wingspan->117.45 %:appSpeed->140.0) %:a321#:Aircraft(:mtom->93499.9 %:mtow->206132.0 %:wingspan->111.88 %:appSpeed->140.0) %:a321#:Aircraft(:mtom->93499.9 %:mtow->206132.0 %:wingspan->117.45 %:appSpeed->140.0) %:a321#:Aircraft(:mtom->93499.9 %:mtow->206132.0 %:wingspan->117.45 %:appSpeed->140.0) %:a332#:Aircraft(:mtom->242000.15 %:mtow->533519.0 %:wingspan->197.83 %:appSpeed->136.0) %:a332#:Aircraft(:mtom->242000.15 %:mtow->533519.0 %:wingspan->197.83 %:appSpeed->139.0) %:a333#:Aircraft(:mtom->242000.15 %:mtow->533519.0 %:wingspan->197.83 %:appSpeed->137.0) %:a342#:Aircraft(:mtom->274999.9 %:mtow->606271.0 %:wingspan->197.83 %:appSpeed->136.0) %:a343#:Aircraft(:mtom->276499.93 %:mtow->609578.0 %:wingspan->197.83 %:appSpeed->138.0) %:a345#:Aircraft(:mtom->379999.73 %:mtow->837756.0 %:wingspan->208.17 %:appSpeed->146.0) %:a346#:Aircraft(:mtom->379999.73 %:mtow->837756.0 %:wingspan->208.17 %:appSpeed->153.0) %:a358#:Aircraft(:mtom->247978.95 %:mtow->546700.0 %:wingspan->212.416666666667 %:appSpeed->140.0) %:a359#:Aircraft(:mtom->280000.3 %:mtow->617295.0 %:wingspan->212.416666666667 %:appSpeed->140.0) %:a359#:Aircraft(:mtom->280002.57 %:mtow->617300.0 %:wingspan->212.416666666667 %:appSpeed->140.0) %:a388#:Aircraft(:mtom->575000.0 %:mtow->1267658.0 %:wingspan->261.65 %:appSpeed->145.0) %:a38f#:Aircraft(:mtom->589670.08 %:mtow->1300000.0 %:wingspan->261.65 %:appSpeed->145.0) %:a320#:Aircraft(:mtom->78999.92 %:mtow->174165.0 %:wingspan->117.45 %:appSpeed->136.0) %:aa1#:Aircraft(:mtom->680.39 %:mtow->1500.0 %:wingspan->24.4166666666667 %:appSpeed->78.0) %:aa1#:Aircraft(:mtom->680.39 %:mtow->1500.0 %:wingspan->24.4166666666667 %:appSpeed->66.3) %:aa5#:Aircraft(:mtom->997.9 %:mtow->2200.0 %:wingspan->31.4166666666667 %:appSpeed->68.9) %:ch7a#:Aircraft(:mtom->598.74 %:mtow->1320.0 %:wingspan->33.5 %:appSpeed->52.0) %:ch7a#:Aircraft(:mtom->793.79 %:mtow->1750.0 %:wingspan->33.5 %:appSpeed->55.9) %:ch7b#:Aircraft(:mtom->793.79 %:mtow->1750.0 %:wingspan->33.5 %:appSpeed->55.9) %:ch7b#:Aircraft(:mtom->816.47 %:mtow->1800.0 %:wingspan->34.5 %:appSpeed->55.9) %:ch7b#:Aircraft(:mtom->884.51 %:mtow->1950.0 %:wingspan->34.5 %:appSpeed->55.9) %:bl8#:Aircraft(:mtom->975.22 %:mtow->2150.0 %:wingspan->36.1666666666667 %:appSpeed->45.5) %:bl8#:Aircraft(:mtom->975.22 %:mtow->2150.0 %:wingspan->36.1666666666667 %:appSpeed->45.5) %:bl8#:Aircraft(:mtom->884.51 %:mtow->1950.0 %:wingspan->32.0 %:appSpeed->62.4) %:bl8#:Aircraft(:mtom->884.51 %:mtow->1950.0 %:wingspan->31.0 %:appSpeed->62.4) %:an12#:Aircraft(:mtom->55111.47 %:mtow->121500.0 %:wingspan->124.8 %:appSpeed->127.0) %:a124#:Aircraft(:mtom->404999.47 %:mtow->892871.0 %:wingspan->240.5 %:appSpeed->124.0) %:a140#:Aircraft(:mtom->21500.28 %:mtow->47400.0 %:wingspan->83.67 %:appSpeed->230.0) %:an26#:Aircraft(:mtom->24004.11 %:mtow->52920.0 %:wingspan->95.8 %:appSpeed->121.0) %:an72#:Aircraft(:mtom->34500.24 %:mtow->76060.0 %:wingspan->104.625 %:appSpeed->97.0) %:at43#:Aircraft(:mtom->16703.54 %:mtow->36825.0 %:wingspan->80.5833333333333 %:appSpeed->104.0) %:at44#:Aircraft(:mtom->16703.54 %:mtow->36825.0 %:wingspan->80.5833333333333 %:appSpeed->104.0) %:at45#:Aircraft(:mtom->18599.56 %:mtow->41005.0 %:wingspan->80.5833333333333 %:appSpeed->104.0) %:at72#:Aircraft(:mtom->19989.82 %:mtow->44070.0 %:wingspan->88.75 %:appSpeed->114.0) %:at72#:Aircraft(:mtom->21500.28 %:mtow->47400.0 %:wingspan->88.75 %:appSpeed->114.0) %:at72#:Aircraft(:mtom->21999.68 %:mtow->48501.0 %:wingspan->88.75 %:appSpeed->114.0) %:at72#:Aircraft(:mtom->21999.68 %:mtow->48501.0 %:wingspan->88.75 %:appSpeed->114.0) %:at72#:Aircraft(:mtom->22499.54 %:mtow->49603.0 %:wingspan->88.75 %:appSpeed->114.0) %:noma#:Aircraft(:mtom->3855.54 %:mtow->8500.0 %:wingspan->54.1666666666667 %:appSpeed->63.7) %:noma#:Aircraft(:mtom->4263.77 %:mtow->9400.0 %:wingspan->54.1666666666667 %:appSpeed->74.1) %:dc3t#:Aircraft(:mtom->13040.78 %:mtow->28750.0 %:wingspan->95.1666666666667 %:appSpeed->76.7) %:aird#:Aircraft(:mtom->1247.38 %:mtow->2750.0 %:wingspan->36.3333333333333 %:appSpeed->70.0) %:aus6#:Aircraft(:mtom->1088.62 %:mtow->2400.0 %:wingspan->36.0 %:appSpeed->70.0) %:pup#:Aircraft(:mtom->725.75 %:mtow->1600.0 %:wingspan->31.0 %:appSpeed->70.0) %:bass#:Aircraft(:mtom->3401.94 %:mtow->7500.0 %:wingspan->55.0 %:appSpeed->70.0) %:d4#:Aircraft(:mtom->861.83 %:mtow->1900.0 %:wingspan->36.0 %:appSpeed->70.0) %:d5#:Aircraft(:mtom->1088.62 %:mtow->2400.0 %:wingspan->36.0 %:appSpeed->70.0) %:bdog#:Aircraft(:mtom->1065.94 %:mtow->2350.0 %:wingspan->33.0 %:appSpeed->70.0) %:b190#:Aircraft(:mtom->7529.63 %:mtow->16600.0 %:wingspan->54.5 %:appSpeed->109.2) %:b190#:Aircraft(:mtom->7765.5 %:mtow->17120.0 %:wingspan->57.75 %:appSpeed->109.2) %:be55#:Aircraft(:mtom->2404.04 %:mtow->5300.0 %:wingspan->37.8333333333333 %:appSpeed->88.4) %:be56#:Aircraft(:mtom->2717.02 %:mtow->5990.0 %:wingspan->37.8333333333333 %:appSpeed->91.4) %:be58#:Aircraft(:mtom->2494.76 %:mtow->5500.0 %:wingspan->37.8333333333333 %:appSpeed->94.9) %:prm1#:Aircraft(:mtom->5669.9 %:mtow->12500.0 %:wingspan->44.5 %:appSpeed->119.6) %:be40#:Aircraft(:mtom->7157.69 %:mtow->15780.0 %:wingspan->43.5 %:appSpeed->100.1) %:be40#:Aircraft(:mtom->7302.84 %:mtow->16100.0 %:wingspan->43.5 %:appSpeed->120.9) %:be33#:Aircraft(:mtom->1587.57 %:mtow->3500.0 %:wingspan->33.5 %:appSpeed->68.9) %:be35#:Aircraft(:mtom->1417.48 %:mtow->3125.0 %:wingspan->32.8333333333333 %:appSpeed->71.5) %:be35#:Aircraft(:mtom->1417.48 %:mtow->3125.0 %:wingspan->33.5 %:appSpeed->71.5) %:be35#:Aircraft(:mtom->1542.21 %:mtow->3400.0 %:wingspan->33.5 %:appSpeed->71.5) %:be36#:Aircraft(:mtom->1655.61 %:mtow->3650.0 %:wingspan->33.5 %:appSpeed->76.7) %:be10#:Aircraft(:mtom->5352.39 %:mtow->11800.0 %:wingspan->45.9166666666667 %:appSpeed->111.0) %:be20#:Aircraft(:mtom->5669.9 %:mtow->12500.0 %:wingspan->54.5 %:appSpeed->97.5) %:be30#:Aircraft(:mtom->6350.29 %:mtow->14000.0 %:wingspan->57.9166666666667 %:appSpeed->106.6) %:b350#:Aircraft(:mtom->7484.27 %:mtow->16500.0 %:wingspan->57.9166666666667 %:appSpeed->106.6) %:b350#:Aircraft(:mtom->6803.89 %:mtow->15000.0 %:wingspan->57.9166666666667 %:appSpeed->106.6) %:be9l#:Aircraft(:mtom->4218.41 %:mtow->9300.0 %:wingspan->45.9166666666667 %:appSpeed->100.0) %:be9l#:Aircraft(:mtom->4581.28 %:mtow->10100.0 %:wingspan->50.25 %:appSpeed->100.0) %:be9t#:Aircraft(:mtom->4966.84 %:mtow->10950.0 %:wingspan->54.5 %:appSpeed->108.0) %:be20#:Aircraft(:mtom->5669.9 %:mtow->12500.0 %:wingspan->57.9166666666667 %:appSpeed->106.6) %:be9l#:Aircraft(:mtom->4755.92 %:mtow->10485.0 %:wingspan->53.6666666666667 %:appSpeed->97.5) %:be9l#:Aircraft(:mtom->4581.28 %:mtow->10100.0 %:wingspan->50.25 %:appSpeed->97.5) %:be9l#:Aircraft(:mtom->4755.92 %:mtow->10485.0 %:wingspan->53.6666666666667 %:appSpeed->97.5) %:be18#:Aircraft(:mtom->4490.56 %:mtow->9900.0 %:wingspan->49.6666666666667 %:appSpeed->87.0) %:b18t#:Aircraft(:mtom->5216.31 %:mtow->11500.0 %:wingspan->46.0 %:appSpeed->87.0) %:be60#:Aircraft(:mtom->3073.09 %:mtow->6775.0 %:wingspan->39.25 %:appSpeed->98.0) %:be60#:Aircraft(:mtom->3050.41 %:mtow->6725.0 %:wingspan->39.25 %:appSpeed->98.0) %:be60#:Aircraft(:mtom->3197.83 %:mtow->7050.0 %:wingspan->39.25 %:appSpeed->98.0) %:be65#:Aircraft(:mtom->3492.66 %:mtow->7700.0 %:wingspan->45.875 %:appSpeed->87.0) %:be65#:Aircraft(:mtom->3719.46 %:mtow->8200.0 %:wingspan->45.875 %:appSpeed->87.0) %:be70#:Aircraft(:mtom->3719.46 %:mtow->8200.0 %:wingspan->50.25 %:appSpeed->87.0) %:be76#:Aircraft(:mtom->1769.01 %:mtow->3900.0 %:wingspan->38.0 %:appSpeed->76.0) %:be77#:Aircraft(:mtom->759.77 %:mtow->1675.0 %:wingspan->30.0 %:appSpeed->63.0) %:be80#:Aircraft(:mtom->3628.74 %:mtow->8000.0 %:wingspan->45.875 %:appSpeed->87.0) %:be80#:Aircraft(:mtom->3855.54 %:mtow->8500.0 %:wingspan->50.25 %:appSpeed->87.0) %:be80#:Aircraft(:mtom->3991.61 %:mtow->8800.0 %:wingspan->50.25 %:appSpeed->87.0) %:be88#:Aircraft(:mtom->3991.61 %:mtow->8800.0 %:wingspan->50.25 %:appSpeed->87.0) %:be95#:Aircraft(:mtom->1905.09 %:mtow->4200.0 %:wingspan->37.8333333333333 %:appSpeed->79.3) %:be99#:Aircraft(:mtom->5125.59 %:mtow->11300.0 %:wingspan->45.92 %:appSpeed->107.0) %:t34p#:Aircraft(:mtom->2494.76 %:mtow->5500.0 %:wingspan->33.3229166666667 %:appSpeed->68.9) %:bl17#:Aircraft(:mtom->1508.19 %:mtow->3325.0 %:wingspan->34.1666666666667 %:appSpeed->79.3) %:bl17#:Aircraft(:mtom->1360.78 %:mtow->3000.0 %:wingspan->34.1666666666667 %:appSpeed->79.3) %:b703#:Aircraft(:mtom->151318.41 %:mtow->333600.0 %:wingspan->145.75 %:appSpeed->128.0) %:b712#:Aircraft(:mtom->53523.9 %:mtow->118000.0 %:wingspan->93.3333333333333 %:appSpeed->139.0) %:b712#:Aircraft(:mtom->54884.68 %:mtow->121000.0 %:wingspan->93.3333333333333 %:appSpeed->139.0) %:b720#:Aircraft(:mtom->106276.69 %:mtow->234300.0 %:wingspan->130.833333333333 %:appSpeed->137.0) %:b721#:Aircraft(:mtom->72574.78 %:mtow->160000.0 %:wingspan->108.0 %:appSpeed->124.0) %:b721#:Aircraft(:mtom->76657.11 %:mtow->169000.0 %:wingspan->108.0 %:appSpeed->124.0) %:b722#:Aircraft(:mtom->83823.87 %:mtow->184800.0 %:wingspan->108.0 %:appSpeed->133.0) %:b722#:Aircraft(:mtom->83823.87 %:mtow->184800.0 %:wingspan->109.25 %:appSpeed->133.0) %:b722#:Aircraft(:mtom->95027.6 %:mtow->209500.0 %:wingspan->108.0 %:appSpeed->133.0) %:b722#:Aircraft(:mtom->95027.6 %:mtow->209500.0 %:wingspan->109.25 %:appSpeed->133.0) %:b731#:Aircraft(:mtom->49895.16 %:mtow->110000.0 %:wingspan->93.0 %:appSpeed->136.0) %:b732#:Aircraft(:mtom->52389.92 %:mtow->115500.0 %:wingspan->93.0 %:appSpeed->129.0) %:b732#:Aircraft(:mtom->58105.18 %:mtow->128100.0 %:wingspan->93.0 %:appSpeed->129.0) %:b733#:Aircraft(:mtom->63276.14 %:mtow->139500.0 %:wingspan->94.75 %:appSpeed->135.0) %:b733#:Aircraft(:mtom->63276.14 %:mtow->139500.0 %:wingspan->102.083333333333 %:appSpeed->135.0) %:b734#:Aircraft(:mtom->68038.86 %:mtow->150000.0 %:wingspan->94.75 %:appSpeed->139.0) %:b735#:Aircraft(:mtom->61688.56 %:mtow->136000.0 %:wingspan->94.75 %:appSpeed->128.0) %:b736#:Aircraft(:mtom->65544.1 %:mtow->144500.0 %:wingspan->112.583333333333 %:appSpeed->125.0) %:b736#:Aircraft(:mtom->65544.1 %:mtow->144500.0 %:wingspan->117.416666666667 %:appSpeed->125.0) %:b737#:Aircraft(:mtom->70080.02 %:mtow->154500.0 %:wingspan->117.416666666667 %:appSpeed->130.0) %:b737#:Aircraft(:mtom->70080.02 %:mtow->154500.0 %:wingspan->112.583333333333 %:appSpeed->130.0) %:b738#:Aircraft(:mtom->79015.79 %:mtow->174200.0 %:wingspan->112.583333333333 %:appSpeed->142.0) %:b738#:Aircraft(:mtom->79015.79 %:mtow->174200.0 %:wingspan->117.833333333333 %:appSpeed->142.0) %:b738#:Aircraft(:mtom->79015.79 %:mtow->174200.0 %:wingspan->117.416666666667 %:appSpeed->142.0) %:b739#:Aircraft(:mtom->79015.79 %:mtow->174200.0 %:wingspan->112.583333333333 %:appSpeed->141.0) %:b739#:Aircraft(:mtom->79015.79 %:mtow->174200.0 %:wingspan->117.833333333333 %:appSpeed->141.0) %:b739#:Aircraft(:mtom->79015.79 %:mtow->174200.0 %:wingspan->117.416666666667 %:appSpeed->141.0) %:b739#:Aircraft(:mtom->85139.29 %:mtow->187700.0 %:wingspan->112.583333333333 %:appSpeed->141.0) %:b739#:Aircraft(:mtom->85139.29 %:mtow->187700.0 %:wingspan->117.416666666667 %:appSpeed->140.0) %:b738#:Aircraft(:mtom->79015.79 %:mtow->174200.0 %:wingspan->117.416666666667 %:appSpeed->142.0) %:b737#:Aircraft(:mtom->77564.3 %:mtow->171000.0 %:wingspan->117.416666666667 %:appSpeed->132.0) %:b741#:Aircraft(:mtom->340194.28 %:mtow->750000.0 %:wingspan->195.666666666667 %:appSpeed->144.0) %:b741#:Aircraft(:mtom->272155.42 %:mtow->600000.0 %:wingspan->195.666666666667 %:appSpeed->144.0) %:b741#:Aircraft(:mtom->333390.39 %:mtow->735000.0 %:wingspan->195.666666666667 %:appSpeed->144.0) %:b742#:Aircraft(:mtom->377842.44 %:mtow->833000.0 %:wingspan->195.666666666667 %:appSpeed->150.0) %:b742#:Aircraft(:mtom->377842.44 %:mtow->833000.0 %:wingspan->195.666666666667 %:appSpeed->150.0) %:b743#:Aircraft(:mtom->377842.44 %:mtow->833000.0 %:wingspan->195.666666666667 %:appSpeed->142.0) %:b743#:Aircraft(:mtom->272155.42 %:mtow->600000.0 %:wingspan->195.666666666667 %:appSpeed->142.0) %:b744#:Aircraft(:mtom->276691.35 %:mtow->610000.0 %:wingspan->195.666666666667 %:appSpeed->157.0) %:b744#:Aircraft(:mtom->396893.32 %:mtow->875000.0 %:wingspan->213.0 %:appSpeed->157.0) %:b744#:Aircraft(:mtom->412769.06 %:mtow->910000.0 %:wingspan->213.0 %:appSpeed->157.0) %:b744#:Aircraft(:mtom->412769.06 %:mtow->910000.0 %:wingspan->213.0 %:appSpeed->157.0) %:b744#:Aircraft(:mtom->396893.32 %:mtow->875000.0 %:wingspan->213.0 %:appSpeed->158.0) %:b748#:Aircraft(:mtom->447695.67 %:mtow->987000.0 %:wingspan->224.416666666667 %:appSpeed->150.0) %:b748#:Aircraft(:mtom->447695.67 %:mtow->987000.0 %:wingspan->224.416666666667 %:appSpeed->159.0) %:b74s#:Aircraft(:mtom->315700.29 %:mtow->696000.0 %:wingspan->195.666666666667 %:appSpeed->140.0) %:b752#:Aircraft(:mtom->115892.85 %:mtow->255500.0 %:wingspan->124.833333333333 %:appSpeed->137.0) %:b752#:Aircraft(:mtom->115892.85 %:mtow->255500.0 %:wingspan->134.75 %:appSpeed->137.0) %:b753#:Aircraft(:mtom->122469.94 %:mtow->270000.0 %:wingspan->124.833333333333 %:appSpeed->143.0) %:b753#:Aircraft(:mtom->122469.94 %:mtow->270000.0 %:wingspan->134.75 %:appSpeed->143.0) %:b762#:Aircraft(:mtom->142881.6 %:mtow->315000.0 %:wingspan->156.083333333333 %:appSpeed->135.0) %:b762#:Aircraft(:mtom->179168.99 %:mtow->395000.0 %:wingspan->156.083333333333 %:appSpeed->142.0) %:b763#:Aircraft(:mtom->158757.33 %:mtow->350000.0 %:wingspan->156.083333333333 %:appSpeed->140.0) %:b763#:Aircraft(:mtom->186880.06 %:mtow->412000.0 %:wingspan->156.083333333333 %:appSpeed->140.0) %:b763#:Aircraft(:mtom->186880.06 %:mtow->412000.0 %:wingspan->156.083333333333 %:appSpeed->145.0) %:b763#:Aircraft(:mtom->186880.06 %:mtow->412000.0 %:wingspan->167.0 %:appSpeed->145.0) %:b764#:Aircraft(:mtom->204116.57 %:mtow->450000.0 %:wingspan->170.333333333333 %:appSpeed->150.0) %:b772#:Aircraft(:mtom->242671.92 %:mtow->535000.0 %:wingspan->199.916666666667 %:appSpeed->136.0) %:b772#:Aircraft(:mtom->286897.17 %:mtow->632500.0 %:wingspan->199.916666666667 %:appSpeed->136.0) %:b772#:Aircraft(:mtom->347451.76 %:mtow->766000.0 %:wingspan->212.583333333333 %:appSpeed->140.0) %:b773#:Aircraft(:mtom->299370.96 %:mtow->660000.0 %:wingspan->199.916666666667 %:appSpeed->149.0) %:b77w#:Aircraft(:mtom->351534.09 %:mtow->775000.0 %:wingspan->212.583333333333 %:appSpeed->149.0) %:b773#:Aircraft(:mtom->347814.63 %:mtow->766800.0 %:wingspan->212.583333333333 %:appSpeed->140.0) %:b788#:Aircraft(:mtom->227930.17 %:mtow->502500.0 %:wingspan->197.25 %:appSpeed->140.0) %:b789#:Aircraft(:mtom->254011.73 %:mtow->560000.0 %:wingspan->197.25 %:appSpeed->140.0) %:b52#:Aircraft(:mtom->221353.08 %:mtow->488000.0 %:wingspan->185.0 %:appSpeed->141.0) %:c97#:Aircraft(:mtom->66133.77 %:mtow->145800.0 %:wingspan->141.3 %:appSpeed->105.0) %:dc10#:Aircraft(:mtom->206384.53 %:mtow->455000.0 %:wingspan->155.3 %:appSpeed->138.0) %:dc3#:Aircraft(:mtom->11430.07 %:mtow->25199.0 %:wingspan->95.1666666666667 %:appSpeed->76.7) %:dc4#:Aircraft(:mtom->33112.24 %:mtow->73000.0 %:wingspan->117.5 %:appSpeed->94.0) %:dc6#:Aircraft(:mtom->48534.38 %:mtow->107000.0 %:wingspan->117.5 %:appSpeed->108.0) %:dc7#:Aircraft(:mtom->64863.71 %:mtow->143000.0 %:wingspan->127.5 %:appSpeed->110.0) %:dc95#:Aircraft(:mtom->41140.83 %:mtow->90700.0 %:wingspan->89.4 %:appSpeed->132.0) %:dc95#:Aircraft(:mtom->41140.83 %:mtow->90700.0 %:wingspan->89.4 %:appSpeed->132.0) %:dc92#:Aircraft(:mtom->44452.05 %:mtow->98000.0 %:wingspan->93.3 %:appSpeed->132.0) %:dc93#:Aircraft(:mtom->54884.68 %:mtow->121000.0 %:wingspan->93.3 %:appSpeed->132.0) %:dc93#:Aircraft(:mtom->48987.98 %:mtow->108000.0 %:wingspan->93.3 %:appSpeed->132.0) %:dc94#:Aircraft(:mtom->51709.53 %:mtow->114000.0 %:wingspan->93.3 %:appSpeed->132.0) %:md82#:Aircraft(:mtom->67812.06 %:mtow->149500.0 %:wingspan->107.85 %:appSpeed->134.0) %:md83#:Aircraft(:mtom->72574.78 %:mtow->160000.0 %:wingspan->107.85 %:appSpeed->144.0) %:md88#:Aircraft(:mtom->67812.06 %:mtow->149500.0 %:wingspan->107.85 %:appSpeed->144.0) %:md90#:Aircraft(:mtom->70760.41 %:mtow->156000.0 %:wingspan->107.833333333333 %:appSpeed->138.0) %:md90#:Aircraft(:mtom->76203.52 %:mtow->168000.0 %:wingspan->107.833333333333 %:appSpeed->138.0) %:cl30#:Aircraft(:mtom->17622.06 %:mtow->38850.0 %:wingspan->63.8333333333333 %:appSpeed->117.0) %:cl30#:Aircraft(:mtom->18415.85 %:mtow->40600.0 %:wingspan->69.0 %:appSpeed->125.0) %:cl60#:Aircraft(:mtom->16329.33 %:mtow->36000.0 %:wingspan->64.3333333333333 %:appSpeed->125.0) %:cl60#:Aircraft(:mtom->19096.24 %:mtow->42100.0 %:wingspan->64.3333333333333 %:appSpeed->125.0) %:cl60#:Aircraft(:mtom->19549.83 %:mtow->43100.0 %:wingspan->64.3333333333333 %:appSpeed->125.0) %:cl60#:Aircraft(:mtom->21591.0 %:mtow->47600.0 %:wingspan->64.3333333333333 %:appSpeed->125.0) %:cl60#:Aircraft(:mtom->21863.15 %:mtow->48200.0 %:wingspan->64.3333333333333 %:appSpeed->137.0) %:cl60#:Aircraft(:mtom->21863.15 %:mtow->48200.0 %:wingspan->64.3333333333333 %:appSpeed->125.0) %:crj2#:Aircraft(:mtom->21522.96 %:mtow->47450.0 %:wingspan->68.6666666666667 %:appSpeed->140.0) %:crj2#:Aircraft(:mtom->23133.21 %:mtow->51000.0 %:wingspan->68.5833333333333 %:appSpeed->140.0) %:crj2#:Aircraft(:mtom->24040.4 %:mtow->53000.0 %:wingspan->68.6666666666667 %:appSpeed->140.0) %:crj7#:Aircraft(:mtom->34019.43 %:mtow->75000.0 %:wingspan->76.2666666666667 %:appSpeed->135.0) %:crj7#:Aircraft(:mtom->34926.61 %:mtow->77000.0 %:wingspan->76.2666666666667 %:appSpeed->135.0) %:crj7#:Aircraft(:mtom->32998.84 %:mtow->72750.0 %:wingspan->76.2666666666667 %:appSpeed->135.0) %:gl5t#:Aircraft(:mtom->41957.29 %:mtow->92500.0 %:wingspan->94.0 %:appSpeed->107.9) %:glex#:Aircraft(:mtom->45132.44 %:mtow->99500.0 %:wingspan->94.0 %:appSpeed->107.9) %:lj24#:Aircraft(:mtom->5896.7 %:mtow->13000.0 %:wingspan->35.5833333333333 %:appSpeed->128.0) %:lj24#:Aircraft(:mtom->5669.45 %:mtow->12499.0 %:wingspan->35.5833333333333 %:appSpeed->128.0) %:lj24#:Aircraft(:mtom->6123.5 %:mtow->13500.0 %:wingspan->35.5833333333333 %:appSpeed->128.0) %:lj24#:Aircraft(:mtom->5669.45 %:mtow->12499.0 %:wingspan->35.5833333333333 %:appSpeed->128.0) %:lj24#:Aircraft(:mtom->5851.34 %:mtow->12900.0 %:wingspan->35.5833333333333 %:appSpeed->128.0) %:lj25#:Aircraft(:mtom->6803.89 %:mtow->15000.0 %:wingspan->35.5833333333333 %:appSpeed->137.0) %:lj25#:Aircraft(:mtom->5669.45 %:mtow->12499.0 %:wingspan->35.5833333333333 %:appSpeed->125.0) %:lj31#:Aircraft(:mtom->7030.68 %:mtow->15500.0 %:wingspan->43.8333333333333 %:appSpeed->125.0) %:lj35#:Aircraft(:mtom->8164.66 %:mtow->18000.0 %:wingspan->39.5 %:appSpeed->143.0) %:lj40#:Aircraft(:mtom->9525.44 %:mtow->21000.0 %:wingspan->47.78125 %:appSpeed->123.0) %:lj45#:Aircraft(:mtom->9752.24 %:mtow->21500.0 %:wingspan->47.8333333333333 %:appSpeed->123.0) %:lj55#:Aircraft(:mtom->8845.05 %:mtow->19500.0 %:wingspan->43.8333333333333 %:appSpeed->125.0) %:lj60#:Aircraft(:mtom->10319.23 %:mtow->22750.0 %:wingspan->43.75 %:appSpeed->125.0) %:lj75#:Aircraft(:mtom->9752.24 %:mtow->21500.0 %:wingspan->50.9166666666667 %:appSpeed->125.0) %:dhc6#:Aircraft(:mtom->5246.25 %:mtow->11566.0 %:wingspan->65.0 %:appSpeed->75.4) %:dhc6#:Aircraft(:mtom->5669.9 %:mtow->12500.0 %:wingspan->65.0 %:appSpeed->75.4) %:dhc7#:Aircraft(:mtom->19958.06 %:mtow->44000.0 %:wingspan->93.0 %:appSpeed->83.0) %:dhc7#:Aircraft(:mtom->21318.84 %:mtow->47000.0 %:wingspan->93.0 %:appSpeed->83.0) %:dh8a#:Aircraft(:mtom->14968.55 %:mtow->33000.0 %:wingspan->85.0 %:appSpeed->92.0) %:dh8a#:Aircraft(:mtom->15648.94 %:mtow->34500.0 %:wingspan->85.0 %:appSpeed->92.0) %:dh8a#:Aircraft(:mtom->15966.45 %:mtow->35200.0 %:wingspan->85.0 %:appSpeed->92.0) %:dh8a#:Aircraft(:mtom->16465.4 %:mtow->36300.0 %:wingspan->85.0 %:appSpeed->92.0) %:dh8b#:Aircraft(:mtom->16465.4 %:mtow->36300.0 %:wingspan->85.0 %:appSpeed->92.0) %:dh8c#:Aircraft(:mtom->18642.65 %:mtow->41100.0 %:wingspan->90.0 %:appSpeed->99.0) %:dh8c#:Aircraft(:mtom->19504.47 %:mtow->43000.0 %:wingspan->90.0 %:appSpeed->99.0) %:dh8c#:Aircraft(:mtom->19504.47 %:mtow->43000.0 %:wingspan->90.0 %:appSpeed->99.0) %:dh8d#:Aircraft(:mtom->29256.71 %:mtow->64500.0 %:wingspan->93.25 %:appSpeed->120.0) %:atla#:Aircraft(:mtom->46198.38 %:mtow->101850.0 %:wingspan->122.770833333333 %:appSpeed->117.0) %:rj1h#:Aircraft(:mtom->46039.63 %:mtow->101500.0 %:wingspan->86.4166666666667 %:appSpeed->123.0) %:rj70#:Aircraft(:mtom->43091.28 %:mtow->95000.0 %:wingspan->86.4166666666667 %:appSpeed->121.0) %:rj85#:Aircraft(:mtom->43998.46 %:mtow->97000.0 %:wingspan->86.4166666666667 %:appSpeed->122.0) %:b461#:Aircraft(:mtom->38101.76 %:mtow->84000.0 %:wingspan->86.4166666666667 %:appSpeed->121.0) %:b462#:Aircraft(:mtom->42184.09 %:mtow->93000.0 %:wingspan->86.4166666666667 %:appSpeed->122.0) %:b463#:Aircraft(:mtom->45132.44 %:mtow->99500.0 %:wingspan->86.4166666666667 %:appSpeed->123.0) %:ba11#:Aircraft(:mtom->35607.0 %:mtow->78500.0 %:wingspan->88.5 %:appSpeed->140.4) %:ba11#:Aircraft(:mtom->39462.54 %:mtow->87000.0 %:wingspan->88.5 %:appSpeed->148.2) %:ba11#:Aircraft(:mtom->44678.85 %:mtow->98500.0 %:wingspan->93.5 %:appSpeed->128.7) %:ba11#:Aircraft(:mtom->47400.4 %:mtow->104500.0 %:wingspan->93.5 %:appSpeed->136.5) %:tris#:Aircraft(:mtom->4535.92 %:mtow->10000.0 %:wingspan->53.0 %:appSpeed->58.5) %:bn2t#:Aircraft(:mtom->3175.15 %:mtow->7000.0 %:wingspan->49.0 %:appSpeed->58.5) %:bu81#:Aircraft(:mtom->749.79 %:mtow->1653.0 %:wingspan->34.71 %:appSpeed->30.0) %:tnav#:Aircraft(:mtom->1960.88 %:mtow->4323.0 %:wingspan->34.6666666666667 %:appSpeed->70.2) %:cl44#:Aircraft(:mtom->95254.4 %:mtow->210000.0 %:wingspan->142.3 %:appSpeed->123.0) %:bu31#:Aircraft(:mtom->680.39 %:mtow->1500.0 %:wingspan->24.25 %:appSpeed->30.0) %:bu33#:Aircraft(:mtom->585.13 %:mtow->1290.0 %:wingspan->21.6458333333333 %:appSpeed->30.0) %:h111#:Aircraft(:mtom->14000.13 %:mtow->30865.0 %:wingspan->73.8 %:appSpeed->91.0) %:c207#:Aircraft(:mtom->16510.76 %:mtow->36400.0 %:wingspan->91.2 %:appSpeed->102.0) %:c212#:Aircraft(:mtom->7700.18 %:mtow->16976.0 %:wingspan->62.3 %:appSpeed->81.0) %:c170#:Aircraft(:mtom->997.9 %:mtow->2200.0 %:wingspan->36.0 %:appSpeed->58.5) %:c120#:Aircraft(:mtom->657.71 %:mtow->1450.0 %:wingspan->33.3333333333333 %:appSpeed->52.0) %:c140#:Aircraft(:mtom->657.71 %:mtow->1450.0 %:wingspan->33.3333333333333 %:appSpeed->52.0) %:c150#:Aircraft(:mtom->725.75 %:mtow->1600.0 %:wingspan->33.1666666666667 %:appSpeed->54.6) %:c152#:Aircraft(:mtom->759.77 %:mtow->1675.0 %:wingspan->33.1666666666667 %:appSpeed->55.9) %:c162#:Aircraft(:mtom->598.74 %:mtow->1320.0 %:wingspan->30.0 %:appSpeed->50.7) %:c172#:Aircraft(:mtom->1202.02 %:mtow->2650.0 %:wingspan->36.0833333333333 %:appSpeed->62.4) %:c72r#:Aircraft(:mtom->1202.02 %:mtow->2650.0 %:wingspan->36.0833333333333 %:appSpeed->62.4) %:c172#:Aircraft(:mtom->1156.66 %:mtow->2550.0 %:wingspan->36.0833333333333 %:appSpeed->62.4) %:c172#:Aircraft(:mtom->1156.66 %:mtow->2550.0 %:wingspan->36.0833333333333 %:appSpeed->62.4) %:c175#:Aircraft(:mtom->1133.98 %:mtow->2500.0 %:wingspan->36.1666666666667 %:appSpeed->55.9) %:c177#:Aircraft(:mtom->1133.98 %:mtow->2500.0 %:wingspan->35.5 %:appSpeed->52.0) %:c77r#:Aircraft(:mtom->1270.06 %:mtow->2800.0 %:wingspan->35.5 %:appSpeed->65.0) %:c180#:Aircraft(:mtom->1270.06 %:mtow->2800.0 %:wingspan->35.8333333333333 %:appSpeed->63.7) %:c182#:Aircraft(:mtom->1406.14 %:mtow->3100.0 %:wingspan->36.0 %:appSpeed->63.7) %:c82r#:Aircraft(:mtom->1406.14 %:mtow->3100.0 %:wingspan->36.0 %:appSpeed->63.7) %:c185#:Aircraft(:mtom->1519.53 %:mtow->3350.0 %:wingspan->35.8333333333333 %:appSpeed->63.7) %:c185#:Aircraft(:mtom->1519.53 %:mtow->3350.0 %:wingspan->35.8333333333333 %:appSpeed->63.7) %:c185#:Aircraft(:mtom->1480.98 %:mtow->3265.0 %:wingspan->35.8333333333333 %:appSpeed->63.7) %:c185#:Aircraft(:mtom->1505.93 %:mtow->3320.0 %:wingspan->35.8333333333333 %:appSpeed->63.7) %:c188#:Aircraft(:mtom->1905.09 %:mtow->4200.0 %:wingspan->41.6666666666667 %:appSpeed->65.0) %:c190#:Aircraft(:mtom->1519.53 %:mtow->3350.0 %:wingspan->36.1666666666667 %:appSpeed->52.0) %:c195#:Aircraft(:mtom->1519.53 %:mtow->3350.0 %:wingspan->36.1666666666667 %:appSpeed->52.0) %:c205#:Aircraft(:mtom->1496.85 %:mtow->3300.0 %:wingspan->36.1666666666667 %:appSpeed->52.0) %:c06t#:Aircraft(:mtom->1718.66 %:mtow->3789.0 %:wingspan->36.0 %:appSpeed->74.1) %:c206#:Aircraft(:mtom->1632.93 %:mtow->3600.0 %:wingspan->36.0 %:appSpeed->70.2) %:c207#:Aircraft(:mtom->1723.65 %:mtow->3800.0 %:wingspan->36.1666666666667 %:appSpeed->70.2) %:c07t#:Aircraft(:mtom->1723.65 %:mtow->3800.0 %:wingspan->36.1666666666667 %:appSpeed->70.2) %:c208#:Aircraft(:mtom->3628.74 %:mtow->8000.0 %:wingspan->52.0833333333333 %:appSpeed->79.3) %:c208#:Aircraft(:mtom->4110.45 %:mtow->9062.0 %:wingspan->52.0833333333333 %:appSpeed->76.7) %:c208#:Aircraft(:mtom->3994.79 %:mtow->8807.0 %:wingspan->52.0833333333333 %:appSpeed->79.3) %:c210#:Aircraft(:mtom->1814.37 %:mtow->4000.0 %:wingspan->36.75 %:appSpeed->75.4) %:p210#:Aircraft(:mtom->1814.37 %:mtow->4000.0 %:wingspan->36.75 %:appSpeed->75.4) %:c10t#:Aircraft(:mtom->1814.37 %:mtow->4000.0 %:wingspan->36.75 %:appSpeed->75.4) %:c303#:Aircraft(:mtom->2336.0 %:mtow->5150.0 %:wingspan->39.0416666666667 %:appSpeed->80.6) %:c310#:Aircraft(:mtom->2494.76 %:mtow->5500.0 %:wingspan->36.9166666666667 %:appSpeed->81.9) %:a37#:Aircraft(:mtom->6350.29 %:mtow->14000.0 %:wingspan->35.8583333333333 %:appSpeed->127.4) %:c320#:Aircraft(:mtom->2404.04 %:mtow->5300.0 %:wingspan->36.9166666666667 %:appSpeed->81.9) %:c337#:Aircraft(:mtom->1995.81 %:mtow->4400.0 %:wingspan->38.0 %:appSpeed->70.2) %:c340#:Aircraft(:mtom->2732.89 %:mtow->6025.0 %:wingspan->38.1083333333333 %:appSpeed->93.6) %:col3#:Aircraft(:mtom->1542.21 %:mtow->3400.0 %:wingspan->36.0833333333333 %:appSpeed->78.0) %:col4#:Aircraft(:mtom->1542.21 %:mtow->3400.0 %:wingspan->36.0833333333333 %:appSpeed->78.0) %:c402#:Aircraft(:mtom->2857.63 %:mtow->6300.0 %:wingspan->44.1666666666667 %:appSpeed->89.7) %:c02t#:Aircraft(:mtom->3107.11 %:mtow->6850.0 %:wingspan->44.1666666666667 %:appSpeed->88.4) %:c404#:Aircraft(:mtom->3810.18 %:mtow->8400.0 %:wingspan->46.3333333333333 %:appSpeed->96.2) %:c411#:Aircraft(:mtom->2948.35 %:mtow->6500.0 %:wingspan->39.8541666666667 %:appSpeed->93.6) %:c414#:Aircraft(:mtom->3061.75 %:mtow->6750.0 %:wingspan->44.1666666666667 %:appSpeed->94.9) %:c421#:Aircraft(:mtom->3379.26 %:mtow->7450.0 %:wingspan->44.1666666666667 %:appSpeed->96.2) %:c425#:Aircraft(:mtom->3900.89 %:mtow->8600.0 %:wingspan->44.1666666666667 %:appSpeed->97.5) %:c441#:Aircraft(:mtom->4467.88 %:mtow->9850.0 %:wingspan->49.3333333333333 %:appSpeed->97.5) %:c525#:Aircraft(:mtom->4808.08 %:mtow->10600.0 %:wingspan->46.9166666666667 %:appSpeed->107.9) %:c525#:Aircraft(:mtom->4853.44 %:mtow->10700.0 %:wingspan->46.9166666666667 %:appSpeed->107.9) %:c25a#:Aircraft(:mtom->5579.19 %:mtow->12300.0 %:wingspan->49.8333333333333 %:appSpeed->114.4) %:c25a#:Aircraft(:mtom->5669.9 %:mtow->12500.0 %:wingspan->49.8333333333333 %:appSpeed->114.4) %:c25b#:Aircraft(:mtom->6291.33 %:mtow->13870.0 %:wingspan->53.3333333333333 %:appSpeed->107.9) %:c25c#:Aircraft(:mtom->7760.97 %:mtow->17110.0 %:wingspan->50.8333333333333 %:appSpeed->110.5) %:c560#:Aircraft(:mtom->7633.96 %:mtow->16830.0 %:wingspan->54.75 %:appSpeed->107.9) %:c56x#:Aircraft(:mtom->9071.85 %:mtow->20000.0 %:wingspan->55.7083333333333 %:appSpeed->106.6) %:c500#:Aircraft(:mtom->5375.07 %:mtow->11850.0 %:wingspan->47.0833333333333 %:appSpeed->106.6) %:c501#:Aircraft(:mtom->5375.07 %:mtow->11850.0 %:wingspan->47.0833333333333 %:appSpeed->106.6) %:c550#:Aircraft(:mtom->6713.17 %:mtow->14800.0 %:wingspan->52.1666666666667 %:appSpeed->111.8) %:c551#:Aircraft(:mtom->6713.17 %:mtow->14800.0 %:wingspan->52.1666666666667 %:appSpeed->111.8) %:c650#:Aircraft(:mtom->9979.03 %:mtow->22000.0 %:wingspan->53.5 %:appSpeed->126.1) %:c25m#:Aircraft(:mtom->4853.44 %:mtow->10700.0 %:wingspan->47.25 %:appSpeed->100.1) %:c510#:Aircraft(:mtom->3921.31 %:mtow->8645.0 %:wingspan->43.1666666666667 %:appSpeed->105.3) %:s550#:Aircraft(:mtom->6849.24 %:mtow->15100.0 %:wingspan->51.5833333333333 %:appSpeed->106.6) %:c680#:Aircraft(:mtom->13743.85 %:mtow->30300.0 %:wingspan->63.3333333333333 %:appSpeed->107.9) %:c680#:Aircraft(:mtom->13959.31 %:mtow->30775.0 %:wingspan->72.3333333333333 %:appSpeed->107.9) %:c560#:Aircraft(:mtom->7543.24 %:mtow->16630.0 %:wingspan->52.1666666666667 %:appSpeed->106.6) %:c560#:Aircraft(:mtom->7393.56 %:mtow->16300.0 %:wingspan->52.1666666666667 %:appSpeed->106.6) %:c650#:Aircraft(:mtom->10432.62 %:mtow->23000.0 %:wingspan->53.5 %:appSpeed->126.1) %:c750#:Aircraft(:mtom->16374.68 %:mtow->36100.0 %:wingspan->63.5833333333333 %:appSpeed->112.0) %:c750#:Aircraft(:mtom->16601.48 %:mtow->36600.0 %:wingspan->69.1666666666667 %:appSpeed->132.0) %:c56x#:Aircraft(:mtom->9162.57 %:mtow->20200.0 %:wingspan->56.3333333333333 %:appSpeed->117.0) %:c526#:Aircraft(:mtom->4717.36 %:mtow->10400.0 %:wingspan->46.7916666666667 %:appSpeed->106.6) %:c560#:Aircraft(:mtom->7393.56 %:mtow->16300.0 %:wingspan->52.1666666666667 %:appSpeed->106.6) %:sf50#:Aircraft(:mtom->2721.55 %:mtow->6000.0 %:wingspan->38.6666666666667 %:appSpeed->87.1) %:sr20#:Aircraft(:mtom->964.34 %:mtow->2126.0 %:wingspan->38.3333333333333 %:appSpeed->74.1) %:sr22#:Aircraft(:mtom->1032.38 %:mtow->2276.0 %:wingspan->38.3333333333333 %:appSpeed->78.0) %:sr22#:Aircraft(:mtom->1069.57 %:mtow->2358.0 %:wingspan->38.3333333333333 %:appSpeed->78.0) %:skim#:Aircraft(:mtom->975.22 %:mtow->2150.0 %:wingspan->34.0 %:appSpeed->55.9) %:skim#:Aircraft(:mtom->1065.94 %:mtow->2350.0 %:wingspan->34.0 %:appSpeed->55.9) %:aj27#:Aircraft(:mtom->43499.51 %:mtow->95900.0 %:wingspan->89.5 %:appSpeed->140.0) %:aj27#:Aircraft(:mtom->40505.8 %:mtow->89300.0 %:wingspan->89.5 %:appSpeed->140.0) %:aj27#:Aircraft(:mtom->47182.22 %:mtow->104019.0 %:wingspan->89.5 %:appSpeed->140.0) %:aj27#:Aircraft(:mtom->43616.08 %:mtow->96157.0 %:wingspan->89.5 %:appSpeed->140.0) %:c919#:Aircraft(:mtom->72499.94 %:mtow->159835.0 %:wingspan->117.5 %:appSpeed->140.0) %:c919#:Aircraft(:mtom->77299.85 %:mtow->170417.0 %:wingspan->117.5 %:appSpeed->140.0) %:cvlp#:Aircraft(:mtom->18955.63 %:mtow->41790.0 %:wingspan->91.8 %:appSpeed->107.0) %:cvlp#:Aircraft(:mtom->22543.54 %:mtow->49700.0 %:wingspan->105.33 %:appSpeed->104.0) %:cvlp#:Aircraft(:mtom->22543.54 %:mtow->49700.0 %:wingspan->105.33 %:appSpeed->106.0) %:cvlt#:Aircraft(:mtom->24766.14 %:mtow->54600.0 %:wingspan->105.3 %:appSpeed->107.0) %:tbm7#:Aircraft(:mtom->2983.73 %:mtow->6578.0 %:wingspan->41.6041666666667 %:appSpeed->79.3) %:tbm7#:Aircraft(:mtom->3353.86 %:mtow->7394.0 %:wingspan->41.6041666666667 %:appSpeed->84.5) %:tbm8#:Aircraft(:mtom->3353.86 %:mtow->7394.0 %:wingspan->41.6 %:appSpeed->84.5) %:tbm9#:Aircraft(:mtom->3353.86 %:mtow->7394.0 %:wingspan->42.1 %:appSpeed->85.0) %:f2th#:Aircraft(:mtom->16556.12 %:mtow->36500.0 %:wingspan->63.4166666666667 %:appSpeed->110.5) %:f2th#:Aircraft(:mtom->19232.32 %:mtow->42400.0 %:wingspan->63.4166666666667 %:appSpeed->110.5) %:f2th#:Aircraft(:mtom->18597.29 %:mtow->41000.0 %:wingspan->70.1666666666667 %:appSpeed->107.0) %:f2th#:Aircraft(:mtom->19413.75 %:mtow->42800.0 %:wingspan->70.1666666666667 %:appSpeed->105.0) %:fa50#:Aircraft(:mtom->18497.5 %:mtow->40780.0 %:wingspan->61.875 %:appSpeed->113.0) %:fa7x#:Aircraft(:mtom->31751.47 %:mtow->70000.0 %:wingspan->86.0 %:appSpeed->104.0) %:f900#:Aircraft(:mtom->21092.05 %:mtow->46500.0 %:wingspan->63.4166666666667 %:appSpeed->110.5) %:f900#:Aircraft(:mtom->22226.03 %:mtow->49000.0 %:wingspan->63.4166666666667 %:appSpeed->110.5) %:f900#:Aircraft(:mtom->22226.03 %:mtow->49000.0 %:wingspan->70.17 %:appSpeed->110.0) %:mir2#:Aircraft(:mtom->17009.71 %:mtow->37500.0 %:wingspan->29.0 %:appSpeed->175.0) %:mir2#:Aircraft(:mtom->17236.51 %:mtow->38000.0 %:wingspan->29.9166666666667 %:appSpeed->175.0) %:fa10#:Aircraft(:mtom->8500.32 %:mtow->18740.0 %:wingspan->42.9166666666667 %:appSpeed->106.6) %:fa20#:Aircraft(:mtom->12999.96 %:mtow->28660.0 %:wingspan->53.5 %:appSpeed->106.6) %:ajet#:Aircraft(:mtom->7500.15 %:mtow->16535.0 %:wingspan->29.8958333333333 %:appSpeed->117.0) %:dove#:Aircraft(:mtom->4059.65 %:mtow->8950.0 %:wingspan->57.0 %:appSpeed->84.0) %:hern#:Aircraft(:mtom->6123.5 %:mtow->13500.0 %:wingspan->71.5 %:appSpeed->85.0) %:dhc2#:Aircraft(:mtom->2313.32 %:mtow->5100.0 %:wingspan->48.0 %:appSpeed->50.7) %:dhc4#:Aircraft(:mtom->12927.38 %:mtow->28500.0 %:wingspan->95.67 %:appSpeed->77.0) %:dhc5#:Aircraft(:mtom->22316.74 %:mtow->49200.0 %:wingspan->96.0 %:appSpeed->91.0) %:da20#:Aircraft(:mtom->800.14 %:mtow->1764.0 %:wingspan->35.6666666666667 %:appSpeed->58.5) %:da40#:Aircraft(:mtom->1309.97 %:mtow->2888.0 %:wingspan->38.1666666666667 %:appSpeed->87.1) %:da40#:Aircraft(:mtom->1200.21 %:mtow->2646.0 %:wingspan->39.1666666666667 %:appSpeed->76.7) %:da42#:Aircraft(:mtom->1998.98 %:mtow->4407.0 %:wingspan->44.5 %:appSpeed->88.4) %:da50#:Aircraft(:mtom->997.9 %:mtow->2200.0 %:wingspan->38.3333333333333 %:appSpeed->89.7) %:da50#:Aircraft(:mtom->1230.14 %:mtow->2712.0 %:wingspan->44.0 %:appSpeed->89.7) %:da62#:Aircraft(:mtom->2300.17 %:mtow->5071.0 %:wingspan->47.8333333333333 %:appSpeed->91.0) %:d228#:Aircraft(:mtom->6599.77 %:mtow->14550.0 %:wingspan->55.6666666666667 %:appSpeed->96.2) %:ea50#:Aircraft(:mtom->2698.87 %:mtow->5950.0 %:wingspan->37.25 %:appSpeed->89.7) %:e110#:Aircraft(:mtom->5901.24 %:mtow->13010.0 %:wingspan->50.25 %:appSpeed->92.0) %:e120#:Aircraft(:mtom->11989.81 %:mtow->26433.0 %:wingspan->64.9166666666667 %:appSpeed->113.1) %:e121#:Aircraft(:mtom->6139.83 %:mtow->13536.0 %:wingspan->48.6666666666667 %:appSpeed->98.8) %:e170#:Aircraft(:mtom->37200.02 %:mtow->82012.0 %:wingspan->85.3333333333333 %:appSpeed->123.5) %:e170#:Aircraft(:mtom->40369.72 %:mtow->89000.0 %:wingspan->85.3333333333333 %:appSpeed->123.5) %:e170#:Aircraft(:mtom->40369.72 %:mtow->89000.0 %:wingspan->93.9166666666667 %:appSpeed->123.5) %:e170#:Aircraft(:mtom->38789.86 %:mtow->85517.0 %:wingspan->85.3333333333333 %:appSpeed->123.5) %:e170#:Aircraft(:mtom->38789.86 %:mtow->85517.0 %:wingspan->93.9166666666667 %:appSpeed->123.5) %:e170#:Aircraft(:mtom->37499.84 %:mtow->82673.0 %:wingspan->85.3333333333333 %:appSpeed->123.5) %:e170#:Aircraft(:mtom->37499.84 %:mtow->82673.0 %:wingspan->93.9166666666667 %:appSpeed->123.5) %:e170#:Aircraft(:mtom->44799.96 %:mtow->98767.0 %:wingspan->101.666666666667 %:appSpeed->124.0) %:e190#:Aircraft(:mtom->51799.8 %:mtow->114199.0 %:wingspan->94.25 %:appSpeed->123.5) %:e190#:Aircraft(:mtom->50299.77 %:mtow->110892.0 %:wingspan->94.25 %:appSpeed->123.5) %:e190#:Aircraft(:mtom->47790.04 %:mtow->105359.0 %:wingspan->94.25 %:appSpeed->123.5) %:e190#:Aircraft(:mtom->56400.13 %:mtow->124341.0 %:wingspan->101.666666666667 %:appSpeed->124.0) %:e190#:Aircraft(:mtom->52290.13 %:mtow->115280.0 %:wingspan->94.25 %:appSpeed->124.0) %:e190#:Aircraft(:mtom->50790.1 %:mtow->111973.0 %:wingspan->94.25 %:appSpeed->124.0) %:e190#:Aircraft(:mtom->48790.21 %:mtow->107564.0 %:wingspan->94.25 %:appSpeed->124.0) %:e190#:Aircraft(:mtom->61499.87 %:mtow->135584.0 %:wingspan->101.666666666667 %:appSpeed->124.0) %:ipan#:Aircraft(:mtom->1799.85 %:mtow->3968.0 %:wingspan->37.75 %:appSpeed->65.0) %:ipan#:Aircraft(:mtom->1800.31 %:mtow->3969.0 %:wingspan->38.3333333333333 %:appSpeed->65.0) %:ipan#:Aircraft(:mtom->1800.31 %:mtow->3969.0 %:wingspan->43.64 %:appSpeed->65.0) %:tuca#:Aircraft(:mtom->3175.15 %:mtow->7000.0 %:wingspan->36.5 %:appSpeed->87.1) %:tuca#:Aircraft(:mtom->3274.94 %:mtow->7220.0 %:wingspan->37.0 %:appSpeed->89.7) %:e314#:Aircraft(:mtom->5400.02 %:mtow->11905.0 %:wingspan->36.5416666666667 %:appSpeed->104.0) %:e135#:Aircraft(:mtom->19000.08 %:mtow->41888.0 %:wingspan->65.75 %:appSpeed->124.0) %:e35l#:Aircraft(:mtom->19999.79 %:mtow->44092.0 %:wingspan->65.75 %:appSpeed->124.0) %:e135#:Aircraft(:mtom->20099.59 %:mtow->44312.0 %:wingspan->65.75 %:appSpeed->124.0) %:e135#:Aircraft(:mtom->21099.76 %:mtow->46517.0 %:wingspan->65.75 %:appSpeed->124.0) %:e145#:Aircraft(:mtom->20989.99 %:mtow->46275.0 %:wingspan->65.75 %:appSpeed->124.0) %:e145#:Aircraft(:mtom->20599.9 %:mtow->45415.0 %:wingspan->65.75 %:appSpeed->124.0) %:e145#:Aircraft(:mtom->19989.82 %:mtow->44070.0 %:wingspan->65.75 %:appSpeed->124.0) %:e145#:Aircraft(:mtom->22000.14 %:mtow->48502.0 %:wingspan->65.75 %:appSpeed->124.0) %:e145#:Aircraft(:mtom->21990.16 %:mtow->48480.0 %:wingspan->65.75 %:appSpeed->124.0) %:e145#:Aircraft(:mtom->19989.82 %:mtow->44070.0 %:wingspan->65.75 %:appSpeed->124.0) %:e145#:Aircraft(:mtom->20989.99 %:mtow->46275.0 %:wingspan->65.75 %:appSpeed->124.0) %:e45x#:Aircraft(:mtom->24099.82 %:mtow->53131.0 %:wingspan->68.9166666666667 %:appSpeed->124.0) %:e50p#:Aircraft(:mtom->4799.91 %:mtow->10582.0 %:wingspan->40.3333333333333 %:appSpeed->100.1) %:e55p#:Aircraft(:mtom->8150.15 %:mtow->17968.0 %:wingspan->52.1666666666667 %:appSpeed->115.7) %:erco#:Aircraft(:mtom->571.53 %:mtow->1260.0 %:wingspan->30.0 %:appSpeed->54.6) %:d28d#:Aircraft(:mtom->4016.56 %:mtow->8855.0 %:wingspan->51.0 %:appSpeed->74.0) %:a10_#:Aircraft(:mtom->23133.21 %:mtow->51000.0 %:wingspan->57.5 %:appSpeed->140.0) %:f27#:Aircraft(:mtom->20819.89 %:mtow->45900.0 %:wingspan->95.15 %:appSpeed->100.1) ) )