tracksperanto 1.9.4 → 1.9.5

Sign up to get free protection for your applications and to get access to all the features.
data/History.txt CHANGED
@@ -1,3 +1,8 @@
1
+ === 1.9.5 / 2010-05-17
2
+
3
+ * More stringently check for trackers in the Shake script importer (helps from recognizing arbitrary variables as trackers)
4
+ * Increase the size of the in-mem string export buffer
5
+
1
6
  === 1.9.4 / 2010-04-16
2
7
 
3
8
  * Fix the boujou exporter to not crash boujou 5
data/Manifest.txt CHANGED
@@ -103,6 +103,7 @@ test/import/samples/pftrack5/apft.2dt
103
103
  test/import/samples/pftrack5/garage.2dt
104
104
  test/import/samples/shake_script/four_tracks_in_one_matchmove.shk
105
105
  test/import/samples/shake_script/four_tracks_in_one_stabilizer.shk
106
+ test/import/samples/shake_script/from_matchmover.shk
106
107
  test/import/samples/shake_script/shake_script_from_boujou.shk
107
108
  test/import/samples/shake_script/shake_tracker_nodes.shk
108
109
  test/import/samples/shake_script/shake_tracker_with_no_anim.shk
data/README.txt CHANGED
@@ -71,10 +71,10 @@ Import and export support:
71
71
  * MatchMover Pro .rz2
72
72
  * MayaLive track export (square pixel aspect only, you will need to write some extra code to convert that)
73
73
  * Flame .stabilizer file
74
+ * Boujou feature track export
74
75
 
75
76
  Import only:
76
- * Boujou feature track export
77
- * Shake script (Tracker, Matchmove and Stabilize nodes)
77
+ * Shake script (Tracker, Matchmove and Stabilize nodes embedded in ANY shake script)
78
78
 
79
79
  == Modularity
80
80
 
data/bin/tracksperanto CHANGED
@@ -41,12 +41,22 @@ writers = Tracksperanto.exporter_names
41
41
 
42
42
  op = OptionParser.new
43
43
 
44
- def mw(name, option)
45
- Proc.new { |value| $middlewares.push([name, {option => value}]) }
44
+ def mw(name, option, default_value = nil)
45
+ Proc.new do |value|
46
+ v = value.nil? ? default_value : value
47
+ $middlewares.push([name, {option => v}])
48
+ end
46
49
  end
47
50
 
51
+ class CodeLoaded < RuntimeError; end
52
+
48
53
  op.banner = "Usage: tracksperanto -f ShakeScript -w 1920 -h 1080 /Films/Blockbuster/Shots/001/script.shk"
49
- op.on("--code PATH_TO_SCRIPT", String, "Load custom Ruby code into tracksperanto") {|c| require(c) }
54
+ op.on("--code PATH_TO_SCRIPT", String, "Load custom Ruby code into tracksperanto") do |c|
55
+ unless $code
56
+ require(c)
57
+ raise CodeLoaded
58
+ end
59
+ end
50
60
  op.on(" -f", "--from TRANSLATOR", String, "Use the specific import translator") { |f| options[:importer] = f }
51
61
  op.on(" -w", "--width WIDTH_IN_PIXELS", Integer, "Absolute input comp width in pixels (will try to autodetect)") { |w| options[:width] = w }
52
62
  op.on(" -h", "--height HEIGHT_IN_PIXELS", Integer, "Absolute input comp height in pixels (will try to autodetect)") {|w| options[:height] = w }
@@ -55,14 +65,14 @@ op.on(" -o", "--only EXPORTER_NAME", String, "Only export the selected format, f
55
65
  op.on(" -xs", "--xscale X_SCALING_FACTOR", Float, "Scale the result in X by this factor (1.0 is the default)", &mw("Scaler", :x_factor))
56
66
  op.on(" -ys", "--yscale Y_SCALING_FACTOR", Float, "Scale the result in Y by this factor (1.0 is the default)", &mw("Scaler", :y_factor))
57
67
  op.on(" -s", "--slip FRAMES", Integer, "Slip the result by this number of frames, positive is 'later'", &mw("Slipper", :slip))
58
- op.on(" -g", "--golden", "Reset the residuals of all trackers to 0 (ignore correlation)", &mw("Golden", :enabled))
68
+ op.on(" -g", "--golden", "Reset the residuals of all trackers to 0 (ignore correlation)", &mw("Golden", :enabled, true))
59
69
  op.on(" -rx", "--reformat-x NEW_PIX_WIDTH", Integer, "Reformat the comp to this width and scale all tracks to it", &mw("Reformat", :width))
60
70
  op.on(" -ry", "--reformat-y NEW_PIX_HEIGHT", Integer, "Reformat the comp to this height and scale all tracks to it", &mw("Reformat", :height))
61
71
  op.on(" -m", "--min-length LENGTH_IN_FRAMES", Integer, "Only export trackers having more than X keyframes", &mw("LengthCutoff", :min_length))
62
72
  op.on(" -xm", "--xshift X_IN_PIXELS", Float, "Move the points left or right", &mw("Shift", :x_shift))
63
73
  op.on(" -ym", "--yshift Y_IN_PIXELS", Float, "Move the points up or down", &mw("Shift", :y_shift))
64
74
  op.on(" -p", "--prefix PREFIX", String, "A prefix to prepend to tracker names in bulk", &mw("Prefix", :prefix))
65
- op.on("--lerp", "Linearly interpolate missing keyframes", &mw("Lerp", :enabled))
75
+ op.on("--lerp", "Linearly interpolate missing keyframes", &mw("Lerp", :enabled, true))
66
76
 
67
77
  op.on("--version", "Show the version and exit") do |v|
68
78
  puts "Tracksperanto v.#{Tracksperanto::VERSION} running on Ruby #{RUBY_VERSION} on #{RUBY_PLATFORM}"
@@ -75,10 +85,9 @@ end
75
85
 
76
86
  begin
77
87
  op.parse!
78
- rescue OptionParser::MissingArgument => e
79
- $stderr.puts "Unknown argument: #{e.message}"
80
- puts parser
81
- exit(-1)
88
+ rescue CodeLoaded
89
+ $code = true
90
+ retry
82
91
  end
83
92
 
84
93
  input_file = ARGV.pop
@@ -1,5 +1,7 @@
1
1
  # Export each tracker as a single Tracker3 node
2
2
  class Tracksperanto::Export::NukeScript < Tracksperanto::Export::Base
3
+ #:nodoc:
4
+
3
5
  NODE_TEMPLATE = %[
4
6
  Tracker3 {
5
7
  track1 {%s}
@@ -25,12 +27,16 @@ Constant {
25
27
  xpos 0
26
28
  ypos -60
27
29
  }]
28
- SCHEMATIC_OFFSET = 30
29
30
  class T < Array
30
31
  attr_accessor :name
31
32
  include ::Tracksperanto::BlockInit
32
33
  end
33
34
 
35
+ #:doc:
36
+
37
+ # Offset by which the new nodes will be shifted down in the node graph
38
+ SCHEMATIC_OFFSET = 30
39
+
34
40
  def self.desc_and_extension
35
41
  "nuke.nk"
36
42
  end
@@ -16,10 +16,13 @@ class Tracksperanto::Import::ShakeScript < Tracksperanto::Import::Base
16
16
  include Tracksperanto::ZipTuples
17
17
 
18
18
  # Normally, we wouldn't need to look for the variable name from inside of the funcall. However,
19
- # in this case we DO want to take this shortcut so we will intersperse the data into the sentinel
19
+ # in this case we DO want to take this shortcut so we know how the tracker node is called
20
20
  def push(atom)
21
21
  return super unless (atom.is_a?(Array) && atom[0] == :assign)
22
22
  return super unless (atom[2][0] == :retval)
23
+ return super unless (atom[2][1].is_a?(Array))
24
+ return super unless (atom[2][1][0].is_a?(Tracksperanto::Tracker))
25
+
23
26
  node_name = atom[1]
24
27
  atom[2][1].map do | tracker |
25
28
  tracker.name = [node_name, tracker.name].join("_")
@@ -207,7 +210,7 @@ class Tracksperanto::Import::ShakeScript < Tracksperanto::Import::Base
207
210
  Tracksperanto::Tracker.new(:name => name, :keyframes => keyframes)
208
211
  end
209
212
 
210
- def collect_tracker(name, x_curve, y_curve, corr_curve, s1, s2, s3, s4, s5, s6, s7, s8, s9, s10, s11, s12)
213
+ def collect_tracker(name, x_curve, y_curve, corr_curve, *discard)
211
214
  unless x_curve.is_a?(Array) && y_curve.is_a?(Array)
212
215
  report_progress("Tracker #{name} had no anim or unsupported interpolation and can't be recovered")
213
216
  return
data/lib/tracksperanto.rb CHANGED
@@ -4,7 +4,7 @@ require 'tempfile'
4
4
 
5
5
  module Tracksperanto
6
6
  PATH = File.expand_path(File.dirname(__FILE__))
7
- VERSION = '1.9.4'
7
+ VERSION = '1.9.5'
8
8
 
9
9
  module Import; end
10
10
  module Export; end
@@ -5,7 +5,7 @@ require "tempfile"
5
5
  class Tracksperanto::BufferIO < DelegateClass(IO)
6
6
  include Tracksperanto::Returning
7
7
 
8
- MAX_IN_MEM_BYTES = 100_000
8
+ MAX_IN_MEM_BYTES = 5_000_000
9
9
 
10
10
  def initialize
11
11
  __setobj__(StringIO.new)
@@ -40,6 +40,8 @@ class Tracksperanto::BufferIO < DelegateClass(IO)
40
40
  if io.pos > MAX_IN_MEM_BYTES
41
41
  tf = Tempfile.new("tracksperanto-xbuf")
42
42
  tf.write(io.string)
43
+ io.string = ""
44
+ GC.start
43
45
  __setobj__(tf)
44
46
  @tempfile_in = true
45
47
  end
@@ -0,0 +1,140 @@
1
+ // Exported by REALVIZ MatchMover 3.0
2
+
3
+ // REALVIZ export tag: $Revision: 1.9 $
4
+ SetTimeRange("1-723");
5
+ SetFieldRendering(0);
6
+ SetFps(25);
7
+ SetMotionBlur(1, 1, 0);
8
+ SetQuality(1);
9
+ SetProxyScale(1, 1);
10
+ SetProxyFilter("default");
11
+ SetPixelScale(1, 1);
12
+ SetDefaultWidth(720);
13
+ SetDefaultHeight(486);
14
+ SetDefaultBytes(1);
15
+ SetDefaultAspect(1);
16
+ SetDefaultViewerAspect(1);
17
+ SetTimecodeMode("25 FPS");
18
+
19
+
20
+
21
+ // Input Nodes
22
+
23
+ rzVideo = FileIn("/media/FAT32/009_RATI_HORROR_SHOW_ANEXO_3/INTERMEDIOS/RayosTomaRShuttY/RayosTomaRShutt.@@@@.tga", "Auto", 0, 0);
24
+
25
+
26
+ // Processing Nodes
27
+
28
+ rzMatchMove = MatchMove (
29
+ 0,
30
+ rzVideo,
31
+ 0,
32
+ "4 point",
33
+ Linear(0,1287.833@1,1293.384@2,1299.374@3,1304.682@4,1309.241@5,1312.448@6,1318.103@7,1328.551@8,1343.103@9,1357.713@10,1370.103@11,1382.258@12,1394.262@13,1408.090@14,1424.183@15,1440.689@16,1457.949@17,1481.027@18,1505.287@19,1528.126@20,1548.951@21,1566.424@22,1578.772@23,1590.524@24,1604.637@25,1616.172@26,1624.566@27,1630.214@28,1637.483@29,1644.249@30,1650.707@31,1657.045@32,1665.528@33,1676.687@34,1688.564@35,1699.826@36,1710.713@37,1720.316@38,1729.932@39,1740.705@40,1750.201@41,1757.148@42,1763.280@43,1769.984@44,1779.493@45,1791.606@46,1807.083@47,1822.467@48,1837.711@49,1850.675@50,1863.772@51,1875.365@52,1886.561@53,1895.849@54,1904.328@55,1913.690@56,1925.657@57,1942.352@58,1963.208@59,1988.384@60,2009.495@61,2030.326@62,2054.291@63,2082.462@64,2108.343@65,2130.351@66,2146.320@67,2164.097@68,2190.026@69,2217.109@70,2242.774@71,2266.775@72,2293.073@73,2318.102@74,2340.789@75,2364.132@76,2388.241@77,2412.133@78,2437.081@79,2454.811@80,2470.899@81,2501.989@82,2518.498@83,2539.109@84,2555.652@85,2579.335@86,2606.970@87,2643.313@88,2688.106@89,2715.635@90,2751.702@91,2770.317@92,2801.313@93,2829.672@94,2852.742@95,2892.695@96,2930.044@97,2955.036@98,2989.838@99,3014.847@100,3041.208@101,3075.321@102,3100.772@103,3132.602@104,3166.065@105,3199.796@106,3230.168@107,3273.482@108,3314.583@109,3358.300@110,3411.607@111,3462.084@112,3506.422@113,3573.670@114,3628.857@115,3681.758@116,3731.323@117,3787.786@118,3840.645@119,3897.596@120,3950.908@121,3996.537@122,4037.743@123,4110.740@124,4157.843@125,4206.390@126,4261.870@127,4303.520@128,4351.417@129,4420.217@130,4475.102@131,4551.862@132,4598.217@133,4679.059@134,4750.771@135,4827.735@136,4912.118@137,4981.058@138,5051.585@139,5113.068@140,5208.434@141,5289.896@142,5355.633@143,5418.033@144,5470.784@145,5514.120@146,5540.651@147,5605.974@148,5670.494@149,5740.015@150,5828.046@151,5911.390@152,6002.938@153,6100.742@154,6198.958@155,6357.661@156,6458.007@157,6577.269@158,6698.242@159,6822.496@160,6988.138@161,7152.607@162,7395.961@163,7640.986@164,7888.094@165,8126.700@166,8405.738@167,8647.496@168,8894.444@169,9117.896@170,9388.567@171,9617.062@172,9798.764@173,9930.235@174,10061.668@175,10189.164@176,10322.548@177,10552.367@178,10907.481@179,11287.920@180,11732.595@181,12300.325@182,12850.437@183,13423.551@184,13928.709@185,14301.917@186,14696.944@187,15129.737@188,15564.197@189,16074.880@190,16589.081@191,17298.093@192,17918.779@193,18733.386@194,19686.477@195,21131.362@196,22556.985@197,24492.429@198,26713.045@199,29530.957@200,32954.741@201,38158.027@202,44019.799@203,55283.022@204,74445.589@205,109015.428@206,208464.264@207,906671.157@208,-1764885.557@498,-191234.756@499,-103888.825@500,-73344.185@501,-58096.950@502,-50028.422@503,-44935.654@504,-40128.783@505,-35720.151@506,-31242.928@507,-27288.144@508,-23562.164@509,-20782.501@510,-18563.916@511,-16868.464@512,-15306.966@513,-14127.063@514,-13152.815@515,-12402.276@516,-11767.329@517,-11154.623@518,-10621.378@519,-10085.838@520,-9641.334@521,-9302.856@522,-9024.123@523,-8787.094@524,-8576.504@525,-8445.063@526,-8328.538@527,-8203.622@528,-8026.309@529,-7810.794@530,-7543.511@531,-7274.554@532,-7009.033@533,-6740.826@534,-6541.905@535,-6375.530@536,-6175.996@537,-5981.692@538,-5804.610@539,-5652.006@540,-5508.180@541,-5383.099@542,-5228.788@543,-5053.723@544,-4913.720@545,-4763.071@546,-4605.989@547,-4466.990@548,-4350.393@549,-4257.360@550,-4171.832@551,-4072.546@552,-3966.789@553,-3859.631@554,-3760.853@555,-3658.326@556,-3571.147@557,-3486.550@558,-3428.547@559,-3361.846@560,-3287.235@561,-3211.671@562,-3139.514@563,-3071.373@564,-2987.551@565,-2907.573@566,-2839.125@567,-2772.309@568,-2694.636@569,-2617.865@570,-2541.356@571,-2473.678@572,-2422.296@573,-2376.463@574,-2320.731@575,-2263.142@576,-2209.951@577,-2155.587@578,-2099.155@579,-2047.314@580,-1989.046@581,-1926.242@582,-1880.511@583,-1848.128@584,-1817.141@585,-1780.819@586,-1743.359@587,-1707.240@588,-1675.382@589,-1652.646@590,-1634.855@591,-1617.675@592,-1594.949@593,-1571.679@594,-1554.016@595,-1537.704@596,-1518.375@597,-1497.862@598,-1468.625@599,-1436.100@600,-1398.011@601,-1364.655@602,-1334.626@603,-1301.095@604,-1266.134@605,-1233.201@606,-1198.264@607,-1169.244@608,-1140.897@609,-1109.588@610,-1073.782@611,-1036.349@612,-993.605@613,-953.561@614,-914.880@615,-873.978@616,-831.203@617,-789.136@618,-739.654@619,-699.956@620,-670.887@621,-639.588@622,-606.269@623,-572.559@624,-534.696@625,-503.511@626,-477.135@627,-452.615@628,-417.315@629,-388.901@630,-368.608@631,-355.537@632,-345.482@633,-330.939@634,-309.712@635,-287.346@636,-263.025@637,-242.522@638,-220.525@639,-195.317@640,-172.905@641,-150.264@642,-128.183@643,-107.347@644,-84.652@645,-63.244@646,-39.545@647,-12.636@648,14.266@649,40.634@650,69.036@651,95.649@652,119.930@653,142.697@654,166.576@655,190.020@656,213.313@657,235.912@658,258.271@659,279.847@660,301.297@661,321.958@662,340.839@663,357.237@664,374.745@665,392.369@666,411.207@667,427.840@668,446.453@669,466.492@670,488.650@671,510.030@672,532.283@673,558.603@674,582.768@675,602.503@676,620.508@677,638.245@678,654.319@679,670.033@680,685.843@681,702.641@682,719.592@683,736.011@684,754.367@685,770.678@686,785.810@687,802.571@688,819.062@689,834.057@690,845.101@691,853.741@692,866.782@693,885.905@694,907.298@695,926.053@696,942.974@697,960.729@698,980.894@699,1004.114@700,1026.264@701,1046.505@702,1061.919@703,1074.393@704,1087.495@705,1105.106@706,1123.376@707,1140.215@708,1151.522@709,1160.318@710,1174.536@711,1183.845@712,1191.975@713,1199.557@714,1205.831@715,1213.101@716,1223.578@717,1236.587@718,1252.982@719,1271.593@720,1289.950@721,1308.732@722,1331.112@723),
34
+ Linear(0,959.808@1,953.190@2,947.649@3,943.525@4,940.979@5,940.064@6,939.673@7,939.564@8,938.608@9,940.271@10,949.102@11,961.674@12,977.452@13,993.880@14,1009.025@15,1022.036@16,1031.647@17,1037.574@18,1036.319@19,1031.553@20,1024.059@21,1015.130@22,1004.690@23,996.117@24,988.443@25,983.182@26,982.634@27,983.488@28,983.482@29,979.660@30,976.283@31,979.002@32,984.716@33,994.342@34,1003.553@35,1009.024@36,1012.472@37,1013.229@38,1013.491@39,1011.511@40,1010.238@41,1014.703@42,1019.308@43,1024.282@44,1026.493@45,1025.323@46,1022.066@47,1019.643@48,1019.091@49,1014.703@50,1006.585@51,999.692@52,995.015@53,994.890@54,1000.097@55,1008.972@56,1014.099@57,1012.188@58,1006.405@59,1000.875@60,999.578@61,1012.991@62,1026.483@63,1025.926@64,1015.081@65,1004.151@66,997.181@67,996.434@68,993.787@69,980.202@70,964.285@71,958.628@72,962.559@73,956.161@74,947.745@75,934.418@76,914.127@77,901.188@78,888.563@79,885.492@80,887.007@81,882.566@82,872.129@83,858.191@84,839.133@85,819.559@86,805.169@87,794.400@88,771.033@89,735.934@90,715.478@91,711.050@92,720.196@93,736.413@94,742.498@95,733.129@96,715.228@97,702.472@98,692.726@99,704.706@100,718.262@101,723.192@102,739.943@103,749.490@104,764.349@105,766.992@106,780.319@107,781.231@108,776.468@109,784.146@110,803.647@111,806.068@112,800.191@113,788.046@114,778.838@115,797.675@116,844.478@117,881.039@118,890.773@119,868.956@120,849.016@121,857.219@122,876.667@123,918.794@124,913.290@125,899.283@126,893.817@127,904.817@128,919.806@129,940.253@130,908.834@131,888.308@132,867.164@133,882.806@134,887.999@135,876.613@136,855.585@137,840.802@138,856.413@139,897.744@140,920.706@141,923.714@142,902.249@143,874.947@144,866.615@145,882.794@146,893.016@147,860.424@148,821.434@149,827.286@150,879.133@151,931.643@152,945.073@153,932.144@154,925.282@155,962.478@156,985.963@157,1000.837@158,986.626@159,970.871@160,969.164@161,1001.294@162,1084.908@163,1164.025@164,1210.719@165,1230.134@166,1247.604@167,1258.699@168,1232.129@169,1231.563@170,1310.741@171,1403.132@172,1443.202@173,1457.536@174,1491.305@175,1551.455@176,1601.012@177,1589.509@178,1544.679@179,1559.066@180,1609.430@181,1644.883@182,1674.695@183,1752.540@184,1797.025@185,1869.450@186,2020.373@187,2175.490@188,2297.335@189,2417.974@190,2555.636@191,2733.099@192,2837.992@193,2921.702@194,3047.504@195,3281.952@196,3530.237@197,3916.188@198,4370.498@199,4869.991@200,5320.010@201,5983.051@202,6747.388@203,8171.100@204,10093.313@205,13650.440@206,24493.822@207,103727.503@208,196734.905@498,20565.008@499,11425.652@500,9080.709@501,8167.564@502,7272.289@503,6044.250@504,4698.485@505,3829.067@506,3443.187@507,3227.223@508,2819.112@509,2414.688@510,2228.005@511,2147.097@512,2095.852@513,2043.280@514,1931.212@515,1774.661@516,1643.347@517,1611.090@518,1681.325@519,1769.254@520,1801.284@521,1743.213@522,1733.593@523,1851.540@524,1993.930@525,2047.608@526,2005.105@527,1918.656@528,1865.578@529,1890.839@530,1925.595@531,1874.579@532,1768.665@533,1694.189@534,1672.731@535,1630.007@536,1538.920@537,1436.546@538,1382.296@539,1389.214@540,1417.570@541,1442.134@542,1472.894@543,1480.139@544,1464.392@545,1454.605@546,1445.738@547,1419.978@548,1357.536@549,1301.565@550,1285.062@551,1314.929@552,1370.209@553,1405.815@554,1417.071@555,1400.108@556,1406.414@557,1448.928@558,1471.493@559,1447.072@560,1404.201@561,1371.023@562,1375.977@563,1393.874@564,1408.736@565,1397.743@566,1360.659@567,1335.093@568,1344.134@569,1351.142@570,1335.840@571,1293.308@572,1249.042@573,1223.436@574,1220.524@575,1223.762@576,1239.744@577,1254.082@578,1247.739@579,1239.473@580,1266.007@581,1303.748@582,1316.362@583,1282.333@584,1229.138@585,1185.992@586,1176.636@587,1181.403@588,1181.911@589,1182.637@590,1187.948@591,1190.616@592,1185.397@593,1172.880@594,1164.520@595,1161.053@596,1149.801@597,1138.524@598,1126.959@599,1114.719@600,1103.890@601,1102.189@602,1097.631@603,1101.271@604,1117.237@605,1137.106@606,1139.562@607,1123.686@608,1097.499@609,1086.393@610,1090.011@611,1097.447@612,1100.779@613,1096.610@614,1092.566@615,1083.480@616,1071.503@617,1065.559@618,1064.165@619,1051.208@620,1029.687@621,1011.690@622,1003.479@623,999.159@624,994.146@625,987.962@626,979.060@627,984.725@628,1002.722@629,1016.660@630,1020.678@631,1007.495@632,987.251@633,974.904@634,977.422@635,985.827@636,989.834@637,991.939@638,994.722@639,999.059@640,1000.108@641,997.755@642,995.588@643,993.129@644,984.768@645,972.562@646,955.373@647,938.290@648,928.485@649,924.880@650,925.331@651,922.179@652,915.648@653,910.914@654,906.441@655,899.666@656,892.899@657,890.115@658,887.440@659,885.143@660,884.691@661,887.182@662,888.529@663,886.374@664,885.912@665,887.306@666,889.219@667,888.793@668,888.825@669,890.481@670,894.079@671,896.264@672,903.853@673,914.274@674,920.053@675,923.543@676,928.656@677,932.229@678,935.524@679,941.124@680,945.506@681,946.470@682,944.470@683,938.097@684,932.176@685,928.005@686,922.611@687,920.881@688,920.889@689,919.197@690,915.418@691,910.866@692,907.131@693,903.085@694,899.599@695,895.675@696,895.224@697,897.724@698,900.679@699,903.546@700,905.797@701,906.345@702,906.960@703,907.263@704,907.921@705,908.403@706,908.563@707,911.000@708,917.417@709,926.478@710,934.983@711,943.224@712,952.591@713,959.094@714,960.624@715,960.082@716,955.291@717,949.889@718,946.859@719,946.695@720,950.032@721,958.914@722,971.914@723),
35
+ 1,
36
+ 1,
37
+ Linear(0,1365.641@1,1371.501@2,1377.848@3,1383.524@4,1388.435@5,1391.929@6,1397.890@7,1408.702@8,1423.688@9,1438.721@10,1451.568@11,1464.249@12,1476.799@13,1491.261@14,1508.012@15,1525.204@16,1543.151@17,1567.046@18,1592.080@19,1615.683@20,1637.221@21,1655.337@22,1668.175@23,1680.466@24,1695.262@25,1707.397@26,1716.347@27,1722.463@28,1730.310@29,1737.628@30,1744.665@31,1751.619@32,1760.813@33,1772.838@34,1785.567@35,1797.633@36,1809.315@37,1819.664@38,1829.998@39,1841.495@40,1851.686@41,1859.275@42,1866.026@43,1873.421@44,1883.713@45,1896.702@46,1913.234@47,1929.560@48,1945.823@49,1959.657@50,1973.652@51,1986.132@52,1998.213@53,2008.316@54,2017.623@55,2027.896@56,2040.866@57,2058.749@58,2080.971@59,2107.783@60,2130.350@61,2152.771@62,2178.531@63,2208.585@64,2236.251@65,2259.646@66,2276.765@67,2296.048@68,2323.667@69,2352.498@70,2379.852@71,2405.959@72,2434.823@73,2461.689@74,2486.330@75,2511.700@76,2537.841@77,2563.775@78,2590.864@79,2610.594@80,2628.473@81,2662.424@82,2680.754@83,2703.495@84,2722.042@85,2748.132@86,2778.518@87,2818.468@88,2867.377@89,2897.293@90,2937.238@91,2958.308@92,2992.726@93,3024.444@94,3050.627@95,3095.214@96,3136.715@97,3165.188@98,3204.070@99,3232.612@100,3262.713@101,3301.420@102,3331.554@103,3367.961@104,3406.050@105,3444.928@106,3479.365@107,3528.785@108,3576.219@109,3626.765@110,3688.376@111,3745.735@112,3797.178@113,3875.236@114,3939.134@115,4000.918@116,4060.363@117,4127.281@118,4189.665@119,4256.153@120,4319.367@121,4375.331@122,4425.347@123,4512.192@124,4569.518@125,4628.430@126,4696.294@127,4747.333@128,4806.112@129,4892.471@130,4960.061@131,5053.482@132,5112.408@133,5212.142@134,5301.816@135,5398.977@136,5504.970@137,5591.280@138,5681.713@139,5762.591@140,5885.402@141,5993.355@142,6078.107@143,6158.831@144,6230.275@145,6288.798@146,6325.438@147,6412.668@148,6498.955@149,6592.792@150,6711.799@151,6826.253@152,6951.179@153,7084.218@154,7220.670@155,7438.666@156,7581.804@157,7751.458@158,7924.953@159,8105.045@160,8345.460@161,8587.060@162,8947.359@163,9315.726@164,9693.379@165,10067.298@166,10516.575@167,10910.287@168,11321.617@169,11700.813@170,12166.055@171,12574.328@172,12904.193@173,13145.131@174,13390.739@175,13631.681@176,13888.328@177,14330.023@178,15016.224@179,15776.072@180,16695.555@181,17934.611@182,19178.094@183,20553.013@184,21826.159@185,22817.417@186,23906.560@187,25165.998@188,26460.336@189,28073.594@190,29802.904@191,32344.662@192,34736.851@193,38127.597@194,42572.985@195,50442.975@196,60082.634@197,77357.754@198,107231.161@199,181032.578@200,564481.829@201,-417371.331@498,-141326.216@499,-87016.221@500,-64496.799@501,-52353.423@502,-45688.804@503,-41390.775@504,-37282.064@505,-33450.774@506,-29467.591@507,-25900.211@508,-22510.489@509,-19958.068@510,-17891.960@511,-16305.083@512,-14832.278@513,-13715.610@514,-12787.815@515,-12068.309@516,-11459.485@517,-10873.425@518,-10358.579@519,-9842.674@520,-9412.748@521,-9085.937@522,-8816.275@523,-8583.260@524,-8379.426@525,-8248.625@526,-8137.580@527,-8014.985@528,-7843.377@529,-7633.587@530,-7373.158@531,-7112.291@532,-6854.377@533,-6593.940@534,-6400.965@535,-6239.341@536,-6044.193@537,-5854.072@538,-5681.853@539,-5532.780@540,-5391.388@541,-5267.744@542,-5116.589@543,-4945.063@544,-4807.562@545,-4659.833@546,-4505.128@547,-4368.311@548,-4253.973@549,-4162.613@550,-4078.003@551,-3980.045@552,-3875.723@553,-3770.190@554,-3672.525@555,-3571.885@556,-3485.871@557,-3402.074@558,-3343.915@559,-3278.006@560,-3204.455@561,-3129.851@562,-3058.746@563,-2991.015@564,-2908.177@565,-2829.035@566,-2761.476@567,-2695.434@568,-2618.691@569,-2542.583@570,-2467.342@571,-2400.712@572,-2349.851@573,-2304.178@574,-2248.992@575,-2191.846@576,-2139.029@577,-2085.235@578,-2029.454@579,-1978.294@580,-1920.687@581,-1858.564@582,-1813.090@583,-1780.653@584,-1750.387@585,-1714.472@586,-1677.288@587,-1641.157@588,-1609.213@589,-1586.286@590,-1567.965@591,-1550.368@592,-1527.440@593,-1504.151@594,-1486.331@595,-1469.766@596,-1450.235@597,-1429.581@598,-1400.477@599,-1368.182@600,-1330.711@601,-1297.521@602,-1267.661@603,-1234.341@604,-1199.587@605,-1166.762@606,-1132.348@607,-1103.639@608,-1075.770@609,-1044.758@610,-1009.249@611,-972.172@612,-929.856@613,-890.265@614,-852.000@615,-811.617@616,-769.464@617,-727.985@618,-679.117@619,-639.840@620,-611.136@621,-580.212@622,-547.213@623,-513.820@624,-476.309@625,-445.339@626,-419.280@627,-395.013@628,-359.739@629,-331.461@630,-311.175@631,-298.060@632,-288.084@633,-273.645@634,-252.451@635,-230.085@636,-205.735@637,-185.227@638,-163.247@639,-138.092@640,-115.685@641,-93.088@642,-71.031@643,-50.195@644,-27.573@645,-6.251@646,17.270@647,43.927@648,70.663@649,96.934@650,125.238@651,151.767@652,175.980@653,198.686@654,222.533@655,245.929@656,269.177@657,291.837@658,314.227@659,335.821@660,357.382@661,378.213@662,397.263@663,413.777@664,431.443@665,449.272@666,468.251@667,485.017@668,503.724@669,523.876@670,546.145@671,567.633@672,590.102@673,616.656@674,641.019@675,660.949@676,679.134@677,697.071@678,713.255@679,729.207@680,745.282@681,762.350@682,779.583@683,796.226@684,814.877@685,831.481@686,846.847@687,863.948@688,880.861@689,896.277@690,907.623@691,916.486@692,929.790@693,949.249@694,971.088@695,990.206@696,1007.462@697,1025.568@698,1046.154@699,1069.844@700,1092.460@701,1113.122@702,1128.912@703,1141.697@704,1155.161@705,1173.293@706,1192.040@707,1209.352@708,1221.151@709,1230.380@710,1245.179@711,1254.906@712,1263.464@713,1271.508@714,1278.223@715,1285.904@716,1296.781@717,1310.184@718,1327.020@719,1346.195@720,1365.115@721,1384.501@722,1407.622@723),
38
+ Linear(0,974.464@1,967.428@2,961.271@3,956.585@4,953.695@5,952.903@6,952.743@7,952.925@8,952.021@9,953.927@10,963.207@11,976.195@12,992.229@13,1008.876@14,1024.232@15,1037.451@16,1047.154@17,1053.203@18,1051.967@19,1047.011@20,1039.547@21,1030.804@22,1020.433@23,1011.830@24,1003.899@25,998.544@26,998.275@27,999.466@28,999.535@29,995.391@30,991.668@31,994.389@32,999.964@33,1009.382@34,1018.362@35,1023.530@36,1026.843@37,1027.627@38,1028.217@39,1026.519@40,1025.768@41,1031.135@42,1036.439@43,1041.846@44,1043.949@45,1042.330@46,1038.696@47,1036.056@48,1035.576@49,1030.949@50,1022.227@51,1014.772@52,1009.507@53,1009.147@54,1014.743@55,1024.336@56,1029.840@57,1027.667@58,1021.195@59,1014.971@60,1013.316@61,1027.376@62,1041.379@63,1040.239@64,1028.535@65,1016.817@66,1009.887@67,1009.822@68,1007.142@69,992.337@70,975.005@71,969.165@72,973.892@73,967.241@74,958.988@75,945.522@76,924.712@77,911.811@78,899.041@79,896.678@80,899.064@81,894.825@82,884.152@83,869.573@84,849.452@85,828.461@86,812.976@87,801.056@88,775.201@89,736.860@90,715.051@91,711.070@92,721.627@93,739.615@94,746.260@95,735.629@96,715.536@97,701.261@98,690.421@99,703.723@100,718.894@101,724.867@102,744.083@103,755.251@104,772.423@105,776.451@106,792.044@107,794.050@108,789.777@109,798.854@110,820.386@111,822.274@112,815.497@113,801.896@114,791.546@115,812.403@116,864.100@117,903.849@118,913.860@119,888.933@120,866.574@121,876.271@122,898.312@123,945.796@124,940.363@125,925.461@126,920.229@127,933.654@128,952.068@129,977.660@130,944.526@131,923.342@132,901.374@133,920.107@134,926.653@135,914.496@136,891.127@137,874.775@138,893.939@139,942.768@140,970.417@141,975.141@142,950.959@143,920.082@144,911.629@145,931.672@146,944.548@147,907.589@148,862.855@149,870.329@150,931.964@151,994.267@152,1010.644@153,995.973@154,988.961@155,1035.251@156,1064.556@157,1083.149@158,1066.855@159,1049.364@160,1049.682@161,1091.854@162,1199.132@163,1301.081@164,1363.620@165,1393.259@166,1422.939@167,1443.450@168,1416.861@169,1424.743@170,1541.968@171,1679.554@172,1746.930@173,1777.794@174,1834.292@175,1926.502@176,2005.165@177,2005.176@178,1963.473@179,2005.721@180,2102.166@181,2188.373@182,2266.071@183,2424.362@184,2529.570@185,2674.001@186,2956.527@187,3264.245@188,3527.674@189,3819.724@190,4165.424@191,4651.226@192,5009.051@193,5404.847@194,5985.738@195,7118.555@196,8549.959@197,11270.188@198,16022.929@199,27281.644@200,83026.021@201,47698.586@498,15599.495@499,9823.837@500,8177.844@501,7520.242@502,6783.471@503,5696.201@504,4480.442@505,3689.950@506,3341.169@507,3147.344@508,2767.632@509,2385.818@510,2208.860@511,2132.875@512,2084.821@513,2034.827@514,1926.358@515,1773.799@516,1645.881@517,1614.874@518,1683.565@519,1769.595@520,1800.990@521,1744.497@522,1735.429@523,1850.773@524,1990.762@525,2043.006@526,2001.986@527,1917.258@528,1865.513@529,1890.290@530,1924.346@531,1874.195@532,1770.364@533,1697.126@534,1676.148@535,1634.094@536,1544.312@537,1443.437@538,1390.188@539,1396.960@540,1424.755@541,1448.600@542,1478.717@543,1485.830@544,1470.200@545,1460.504@546,1451.412@547,1425.823@548,1364.351@549,1309.296@550,1292.903@551,1322.176@552,1376.388@553,1411.257@554,1422.142@555,1405.493@556,1411.619@557,1453.226@558,1475.199@559,1451.134@560,1408.856@561,1376.219@562,1380.991@563,1398.348@564,1412.789@565,1401.817@566,1365.243@567,1339.974@568,1348.573@569,1355.103@570,1339.822@571,1297.870@572,1254.149@573,1228.781@574,1225.712@575,1228.645@576,1244.015@577,1257.954@578,1251.680@579,1243.611@580,1269.613@581,1306.440@582,1318.662@583,1285.100@584,1233.089@585,1190.769@586,1181.584@587,1186.036@588,1186.368@589,1186.946@590,1191.988@591,1194.449@592,1189.231@593,1176.948@594,1168.670@595,1165.166@596,1154.024@597,1142.843@598,1131.351@599,1119.165@600,1108.538@601,1106.717@602,1102.186@603,1105.748@604,1121.284@605,1140.601@606,1143.074@607,1127.621@608,1102.206@609,1091.343@610,1094.827@611,1101.911@612,1104.932@613,1100.690@614,1096.569@615,1087.523@616,1075.603@617,1069.493@618,1067.665@619,1054.642@620,1033.491@621,1015.728@622,1007.424@623,1002.928@624,997.801@625,991.717@626,983.311@627,989.105@628,1006.503@629,1020.011@630,1024.008@631,1011.489@632,992.307@633,980.669@634,983.104@635,991.162@636,994.906@637,996.929@638,999.687@639,1003.910@640,1004.994@641,1002.714@642,1000.620@643,998.122@644,989.933@645,977.979@646,961.158@647,944.596@648,935.029@649,931.519@650,931.894@651,928.849@652,922.573@653,918.013@654,913.701@655,907.214@656,900.825@657,898.156@658,895.520@659,893.306@660,892.879@661,895.167@662,896.298@663,894.131@664,893.608@665,894.905@666,896.737@667,896.455@668,896.776@669,898.684@670,902.451@671,904.807@672,912.378@673,922.531@674,928.075@675,931.610@676,936.859@677,940.735@678,944.599@679,950.498@680,955.071@681,956.077@682,953.921@683,947.521@684,941.586@685,937.506@686,932.249@687,930.338@688,929.638@689,927.397@690,923.775@691,919.873@692,916.551@693,912.373@694,908.473@695,904.333@696,904.127@697,906.869@698,909.846@699,912.434@700,914.360@701,914.785@702,915.883@703,916.972@704,918.039@705,918.318@706,918.132@707,920.539@708,927.247@709,936.625@710,945.266@711,953.776@712,963.434@713,970.152@714,971.617@715,971.262@716,966.556@717,961.429@718,958.554@719,958.562@720,962.076@721,971.049@722,983.937@723),
39
+ 1,
40
+ 1,
41
+ Linear(0,1302.239@1,1297.009@2,1291.390@3,1283.707@4,1275.680@5,1269.599@6,1266.602@7,1268.242@8,1273.597@9,1279.370@10,1283.902@11,1287.293@12,1289.812@13,1292.175@14,1297.260@15,1301.869@16,1307.456@17,1316.331@18,1327.023@19,1335.904@20,1342.865@21,1347.121@22,1348.098@23,1346.625@24,1343.950@25,1340.888@26,1335.624@27,1329.236@28,1321.172@29,1311.368@30,1299.772@31,1289.246@32,1279.016@33,1269.514@34,1261.889@35,1253.632@36,1245.232@37,1236.116@38,1228.821@39,1222.999@40,1216.641@41,1209.804@42,1201.715@43,1191.739@44,1182.176@45,1172.802@46,1163.642@47,1159.110@48,1153.173@49,1146.327@50,1136.804@51,1125.245@52,1113.573@53,1102.632@54,1093.135@55,1084.805@56,1076.953@57,1069.265@58,1062.795@59,1057.864@60,1054.211@61,1052.747@62,1052.153@63,1051.106@64,1047.715@65,1047.120@66,1045.724@67,1044.682@68,1048.314@69,1047.349@70,1045.161@71,1038.845@72,1032.737@73,1033.532@74,1031.204@75,1027.233@76,1025.768@77,1023.185@78,1021.067@79,1015.895@80,1008.245@81,1002.297@82,993.854@83,983.516@84,970.252@85,960.143@86,954.587@87,955.212@88,955.456@89,950.638@90,944.089@91,940.265@92,939.415@93,938.729@94,936.859@95,934.141@96,929.851@97,924.822@98,919.905@99,916.414@100,913.995@101,913.804@102,912.079@103,912.582@104,911.006@105,911.530@106,908.737@107,907.201@108,909.491@109,911.478@110,916.727@111,921.542@112,921.583@113,920.482@114,923.100@115,924.547@116,928.294@117,932.091@118,929.766@119,928.035@120,923.977@121,919.299@122,915.131@123,905.249@124,904.930@125,905.526@126,906.378@127,906.111@128,906.126@129,904.129@130,904.464@131,900.345@132,903.624@133,902.732@134,902.066@135,904.584@136,899.264@137,896.241@138,896.108@139,898.240@140,895.631@141,890.675@142,881.923@143,868.917@144,859.461@145,846.214@146,833.407@147,822.594@148,813.616@149,806.761@150,803.280@151,798.851@152,793.843@153,787.334@154,780.164@155,766.266@156,764.345@157,761.727@158,757.345@159,753.522@160,747.652@161,744.995@162,746.439@163,754.069@164,758.226@165,763.435@166,768.638@167,770.903@168,771.368@169,771.005@170,766.064@171,765.574@172,758.906@173,747.621@174,734.688@175,721.931@176,710.091@177,701.289@178,692.057@179,686.452@180,681.476@181,681.758@182,678.392@183,674.111@184,664.703@185,651.239@186,638.317@187,625.732@188,611.395@189,599.084@190,587.312@191,575.942@192,563.445@193,550.888@194,543.465@195,537.210@196,533.135@197,529.663@198,524.901@199,522.114@200,520.278@201,515.855@202,510.921@203,506.496@204,502.883@205,500.446@206,494.972@207,490.974@208,485.644@209,481.540@210,479.114@211,477.558@212,474.740@213,470.806@214,466.242@215,457.183@216,448.429@217,439.682@218,432.537@219,422.139@220,409.827@221,397.293@222,384.731@223,374.149@224,366.490@225,358.509@226,351.339@227,344.088@228,338.372@229,333.452@230,328.134@231,322.065@232,316.957@233,314.740@234,308.077@235,303.142@236,296.283@237,288.310@238,274.347@239,254.910@240,241.542@241,233.127@242,227.377@243,220.814@244,214.200@245,206.199@246,199.308@247,193.025@248,188.444@249,188.327@250,187.836@251,189.200@252,188.631@253,187.609@254,182.743@255,177.554@256,173.406@257,168.418@258,163.674@259,159.020@260,155.034@261,151.557@262,150.053@263,147.953@264,150.921@265,151.157@266,158.195@267,164.324@268,166.856@269,167.579@270,175.744@271,172.892@272,176.736@273,185.074@274,196.171@275,206.994@276,223.399@277,245.190@278,253.443@279,252.909@280,256.168@281,261.741@282,265.440@283,273.055@284,276.975@285,279.107@286,279.014@287,273.011@288,266.219@289,259.909@290,252.248@291,246.866@292,240.125@293,233.909@294,229.780@295,229.293@296,232.716@297,237.641@298,250.404@299,264.238@300,281.674@301,290.164@302,298.931@303,306.662@304,317.866@305,330.297@306,338.363@307,348.067@308,359.051@309,363.954@310,364.969@311,362.085@312,360.015@313,355.036@314,351.516@315,348.696@316,345.774@317,346.799@318,352.659@319,361.053@320,371.386@321,382.811@322,394.818@323,409.169@324,424.719@325,438.173@326,451.808@327,464.291@328,478.175@329,493.883@330,511.764@331,529.245@332,545.045@333,559.486@334,571.833@335,584.556@336,602.794@337,616.168@338,628.618@339,638.992@340,650.378@341,660.027@342,674.422@343,688.088@344,700.142@345,711.868@346,722.968@347,733.776@348,744.994@349,752.276@350,753.472@351,753.015@352,751.807@353,750.177@354,747.793@355,744.912@356,739.292@357,730.023@358,717.367@359,704.888@360,689.607@361,674.359@362,656.404@363,640.046@364,626.769@365,614.514@366,605.400@367,599.330@368,600.900@369,602.994@370,603.348@371,603.675@372,608.883@373,614.577@374,616.775@375,613.683@376,610.645@377,612.031@378,615.825@379,620.679@380,623.901@381,628.667@382,633.117@383,634.863@384,631.903@385,628.245@386,628.294@387,631.173@388,634.607@389,638.894@390,643.785@391,649.568@392,658.445@393,666.541@394,674.458@395,680.510@396,688.175@397,695.205@398,701.599@399,707.195@400,714.654@401,726.803@402,740.592@403,754.012@404,764.991@405,776.698@406,786.658@407,792.108@408,795.601@409,800.945@410,808.285@411,814.412@412,818.671@413,824.566@414,832.007@415,845.952@416,863.273@417,878.966@418,890.913@419,902.313@420,914.916@421,922.379@422,928.033@423,931.019@424,934.969@425,941.656@426,948.491@427,953.940@428,961.121@429,967.862@430,973.744@431,977.832@432,979.128@433,981.414@434,982.748@435,982.252@436,982.345@437,983.306@438,989.902@439,996.586@440,1003.121@441,1008.532@442,1013.242@443,1016.437@444,1017.312@445,1016.606@446,1014.878@447,1012.993@448,1010.400@449,1008.011@450,1006.257@451,1007.173@452,1006.563@453,1006.226@454,1007.312@455,1011.279@456,1014.453@457,1018.862@458,1024.329@459,1031.848@460,1042.313@461,1056.986@462,1074.458@463,1095.940@464,1123.562@465,1145.612@466,1161.419@467,1171.269@468,1180.047@469,1192.411@470,1203.544@471,1212.739@472,1222.356@473,1232.546@474,1241.983@475,1249.362@476,1255.999@477,1261.763@478,1267.429@479,1271.497@480,1275.283@481,1280.091@482,1285.488@483,1292.569@484,1300.871@485,1310.934@486,1322.892@487,1341.636@488,1360.206@489,1373.833@490,1383.288@491,1393.337@492,1407.043@493,1421.022@494,1433.334@495,1447.162@496,1458.309@497,1467.554@498,1473.358@499,1478.770@500,1482.966@501,1482.699@502,1477.558@503,1469.352@504,1463.122@505,1459.167@506,1462.371@507,1469.369@508,1478.118@509,1487.298@510,1497.190@511,1505.238@512,1513.557@513,1520.305@514,1526.777@515,1531.393@516,1533.040@517,1534.825@518,1538.531@519,1542.271@520,1542.383@521,1539.705@522,1535.812@523,1531.779@524,1521.688@525,1511.160@526,1498.245@527,1490.669@528,1484.379@529,1480.222@530,1479.305@531,1481.827@532,1485.934@533,1488.355@534,1484.997@535,1481.148@536,1482.612@537,1486.206@538,1487.370@539,1485.760@540,1483.801@541,1481.636@542,1481.391@543,1483.296@544,1484.076@545,1486.835@546,1492.412@547,1496.662@548,1498.575@549,1497.401@550,1496.266@551,1494.695@552,1494.766@553,1496.135@554,1498.845@555,1502.920@556,1505.726@557,1503.951@558,1499.820@559,1499.282@560,1502.316@561,1505.642@562,1506.160@563,1508.532@564,1510.566@565,1514.804@566,1517.940@567,1519.929@568,1523.138@569,1528.211@570,1530.063@571,1533.257@572,1535.125@573,1535.335@574,1534.097@575,1534.453@576,1533.216@577,1532.958@578,1534.586@579,1539.194@580,1543.328@581,1542.316@582,1539.979@583,1541.281@584,1541.502@585,1543.282@586,1542.580@587,1539.427@588,1534.768@589,1526.001@590,1514.892@591,1504.137@592,1497.556@593,1491.874@594,1482.065@595,1471.512@596,1461.455@597,1453.819@598,1448.830@599,1445.589@600,1438.262@601,1436.917@602,1436.365@603,1436.338@604,1435.211@605,1430.884@606,1423.965@607,1424.896@608,1427.573@609,1430.761@610,1433.730@611,1437.341@612,1442.443@613,1446.677@614,1449.219@615,1454.567@616,1462.341@617,1471.457@618,1479.154@619,1484.225@620,1488.373@621,1491.471@622,1494.915@623,1497.892@624,1503.640@625,1508.166@626,1506.548@627,1504.122@628,1509.512@629,1506.308@630,1502.192@631,1500.329@632,1499.282@633,1497.529@634,1495.469@635,1492.154@636,1489.659@637,1487.838@638,1486.127@639,1485.559@640,1484.694@641,1484.627@642,1483.658@643,1482.467@644,1481.727@645,1483.508@646,1487.502@647,1494.054@648,1498.457@649,1501.966@650,1506.894@651,1512.427@652,1514.770@653,1517.666@654,1521.520@655,1528.073@656,1532.214@657,1535.288@658,1538.034@659,1541.000@660,1543.582@661,1541.818@662,1539.841@663,1535.989@664,1534.574@665,1532.188@666,1530.318@667,1529.917@668,1530.742@669,1533.496@670,1538.303@671,1542.418@672,1548.170@673,1552.655@674,1555.893@675,1558.558@676,1559.463@677,1561.592@678,1563.461@679,1564.852@680,1564.863@681,1564.634@682,1564.727@683,1563.666@684,1562.924@685,1561.621@686,1559.599@687,1557.933@688,1551.797@689,1543.310@690,1537.436@691,1534.058@692,1531.966@693,1531.802@694,1531.836@695,1529.832@696,1530.019@697,1532.040@698,1534.003@699,1539.140@700,1540.596@701,1540.153@702,1543.337@703,1543.259@704,1540.019@705,1539.952@706,1539.211@707,1536.982@708,1533.288@709,1526.120@710,1519.315@711,1514.049@712,1507.475@713,1496.749@714,1487.385@715,1478.080@716,1471.636@717,1470.590@718,1472.301@719,1473.760@720,1475.619@721,1478.734@722,1482.087@723),
42
+ Linear(0,480.851@1,472.279@2,464.577@3,458.527@4,454.298@5,451.748@6,449.532@7,446.970@8,443.498@9,443.369@10,449.006@11,459.744@12,472.706@13,486.092@14,498.682@15,508.761@16,514.747@17,516.557@18,512.162@19,503.526@20,492.595@21,479.442@22,464.704@23,451.883@24,441.155@25,432.932@26,427.696@27,424.675@28,420.440@29,415.036@30,411.504@31,411.337@32,416.606@33,424.778@34,432.006@35,437.828@36,439.401@37,438.398@38,434.630@39,428.880@40,423.290@41,419.659@42,419.144@43,419.429@44,420.056@45,418.663@46,416.188@47,413.066@48,409.805@49,405.096@50,399.376@51,394.588@52,392.118@53,392.127@54,393.869@55,395.822@56,396.906@57,395.648@58,393.763@59,393.247@60,395.814@61,403.635@62,413.249@63,415.961@64,413.011@65,407.847@66,400.525@67,394.829@68,391.676@69,388.627@70,385.071@71,382.502@72,381.727@73,377.470@74,368.931@75,357.645@76,343.551@77,330.874@78,320.910@79,313.359@80,307.012@81,302.188@82,296.329@83,289.146@84,282.345@85,277.806@86,277.002@87,280.341@88,282.420@89,280.007@90,274.210@91,267.615@92,264.392@93,264.921@94,268.788@95,273.827@96,279.528@97,285.294@98,288.577@99,290.192@100,290.202@101,288.352@102,288.197@103,285.062@104,279.334@105,273.655@106,266.538@107,259.502@108,254.975@109,253.867@110,259.922@111,269.645@112,275.747@113,280.903@114,284.953@115,288.605@116,299.259@117,315.573@118,327.939@119,335.534@120,339.125@121,340.437@122,341.883@123,342.363@124,341.222@125,339.515@126,337.492@127,333.240@128,325.788@129,313.704@130,301.365@131,288.151@132,280.043@133,277.403@134,277.626@135,280.162@136,278.601@137,277.953@138,275.810@139,272.605@140,272.497@141,272.547@142,271.170@143,270.156@144,267.414@145,263.849@146,260.760@147,259.925@148,260.286@149,260.992@150,263.262@151,267.988@152,272.969@153,276.457@154,277.196@155,277.267@156,281.575@157,289.099@158,294.981@159,298.234@160,299.522@161,299.216@162,298.901@163,305.141@164,312.652@165,319.223@166,323.990@167,327.356@168,328.007@169,321.776@170,309.135@171,293.107@172,277.592@173,263.176@174,252.097@175,243.147@176,236.738@177,233.179@178,233.557@179,236.430@180,247.321@181,261.856@182,277.672@183,294.488@184,312.606@185,328.303@186,342.357@187,355.839@188,365.384@189,368.553@190,366.381@191,363.322@192,361.642@193,359.920@194,357.270@195,355.319@196,355.252@197,354.686@198,354.556@199,354.196@200,354.840@201,356.690@202,362.503@203,376.647@204,393.998@205,408.832@206,423.481@207,433.484@208,439.049@209,441.899@210,445.058@211,449.092@212,452.962@213,455.168@214,454.285@215,451.949@216,446.514@217,440.880@218,438.976@219,439.657@220,440.409@221,438.279@222,436.570@223,437.291@224,436.935@225,439.364@226,442.432@227,448.790@228,458.836@229,466.654@230,474.226@231,479.118@232,478.805@233,476.888@234,478.575@235,480.645@236,479.737@237,478.044@238,477.290@239,472.797@240,464.038@241,449.441@242,435.635@243,423.371@244,411.556@245,403.239@246,401.729@247,402.643@248,405.808@249,410.898@250,421.108@251,437.347@252,451.526@253,456.899@254,456.027@255,454.409@256,453.116@257,452.698@258,457.139@259,464.628@260,475.128@261,483.636@262,494.321@263,503.255@264,510.812@265,511.359@266,512.981@267,516.432@268,515.858@269,517.866@270,517.749@271,517.768@272,517.884@273,518.195@274,516.164@275,514.804@276,510.386@277,508.953@278,511.210@279,517.860@280,518.064@281,514.321@282,516.079@283,524.335@284,535.726@285,550.638@286,565.114@287,576.587@288,579.281@289,576.591@290,577.835@291,582.576@292,584.527@293,581.167@294,575.996@295,571.763@296,564.887@297,557.452@298,553.239@299,551.836@300,551.514@301,553.961@302,558.293@303,557.622@304,555.272@305,554.692@306,554.687@307,555.647@308,552.443@309,550.866@310,548.879@311,547.910@312,546.096@313,546.005@314,548.797@315,548.613@316,541.726@317,532.054@318,524.121@319,517.999@320,512.483@321,506.904@322,502.497@323,502.725@324,506.576@325,514.960@326,522.962@327,526.576@328,527.073@329,530.670@330,534.274@331,539.543@332,540.448@333,543.583@334,543.491@335,545.011@336,544.807@337,546.160@338,548.403@339,548.898@340,546.239@341,542.679@342,537.922@343,532.056@344,525.127@345,520.366@346,518.457@347,520.383@348,524.756@349,530.411@350,534.670@351,534.512@352,532.859@353,532.194@354,533.269@355,534.157@356,534.563@357,534.904@358,535.147@359,535.416@360,537.530@361,536.179@362,536.262@363,538.197@364,539.389@365,539.033@366,536.848@367,534.359@368,531.234@369,523.729@370,512.227@371,502.051@372,497.443@373,497.975@374,501.125@375,506.054@376,507.530@377,503.759@378,495.402@379,484.423@380,472.708@381,463.622@382,458.556@383,456.974@384,456.261@385,457.099@386,459.709@387,465.044@388,472.068@389,476.654@390,476.856@391,475.653@392,478.497@393,485.085@394,493.132@395,503.401@396,519.321@397,532.604@398,544.004@399,553.848@400,561.051@401,562.033@402,561.393@403,561.435@404,561.402@405,561.136@406,559.865@407,557.181@408,550.514@409,540.487@410,530.964@411,524.382@412,519.965@413,516.078@414,513.724@415,514.009@416,513.477@417,514.448@418,517.226@419,525.644@420,535.697@421,541.831@422,546.418@423,552.684@424,557.294@425,561.170@426,566.684@427,572.596@428,578.307@429,580.418@430,578.373@431,568.747@432,556.014@433,546.188@434,533.484@435,515.930@436,501.491@437,491.397@438,485.142@439,480.451@440,478.262@441,482.795@442,496.030@443,506.403@444,513.726@445,521.389@446,529.142@447,536.628@448,545.470@449,554.818@450,561.448@451,564.220@452,564.536@453,561.158@454,557.026@455,553.235@456,550.654@457,545.223@458,540.013@459,539.034@460,539.845@461,541.586@462,542.106@463,544.338@464,551.110@465,554.042@466,551.420@467,548.845@468,549.723@469,552.111@470,556.017@471,563.299@472,569.557@473,572.160@474,571.245@475,569.545@476,566.240@477,560.107@478,552.045@479,544.974@480,539.632@481,537.903@482,537.391@483,539.087@484,541.397@485,545.670@486,557.097@487,569.469@488,566.674@489,557.004@490,551.480@491,552.242@492,558.359@493,564.330@494,568.203@495,567.894@496,566.132@497,566.819@498,571.478@499,573.298@500,567.476@501,558.218@502,553.514@503,555.999@504,563.252@505,567.696@506,566.122@507,561.355@508,560.285@509,564.827@510,567.248@511,564.353@512,558.529@513,551.986@514,548.130@515,548.488@516,549.530@517,546.309@518,538.535@519,529.239@520,521.832@521,521.383@522,521.893@523,515.333@524,505.770@525,502.901@526,508.944@527,522.184@528,533.333@529,537.189@530,535.555@531,539.258@532,547.793@533,548.733@534,538.430@535,531.597@536,532.784@537,537.464@538,539.659@539,537.193@540,532.238@541,525.647@542,517.922@543,511.424@544,506.658@545,502.457@546,496.574@547,490.400@548,488.548@549,490.069@550,490.708@551,488.525@552,483.917@553,480.903@554,481.943@555,491.038@556,495.164@557,489.145@558,485.507@559,487.857@560,492.171@561,497.093@562,496.751@563,494.185@564,490.389@565,488.794@566,488.388@567,484.568@568,473.505@569,459.134@570,445.810@571,436.394@572,429.778@573,423.858@574,415.685@575,406.153@576,396.353@577,390.212@578,390.379@579,398.224@580,399.852@581,392.381@582,387.832@583,391.195@584,398.781@585,406.160@586,407.708@587,405.755@588,405.015@589,404.535@590,403.050@591,402.166@592,402.915@593,405.153@594,405.680@595,403.965@596,402.507@597,399.751@598,396.666@599,393.392@600,391.438@601,388.964@602,391.527@603,397.086@604,398.766@605,398.605@606,400.870@607,405.503@608,413.205@609,419.917@610,421.653@611,419.424@612,416.296@613,412.893@614,407.606@615,400.837@616,392.519@617,382.679@618,367.369@619,353.595@620,345.965@621,338.233@622,328.382@623,319.619@624,314.580@625,315.530@626,325.940@627,337.984@628,342.226@629,345.971@630,355.121@631,371.227@632,389.652@633,404.019@634,408.949@635,409.235@636,409.942@637,412.368@638,416.613@639,419.709@640,421.887@641,421.872@642,421.395@643,419.816@644,416.417@645,410.902@646,404.351@647,398.630@648,392.846@649,390.096@650,388.429@651,386.572@652,385.855@653,383.976@654,382.852@655,383.855@656,385.552@657,384.547@658,383.332@659,383.127@660,382.607@661,379.575@662,374.894@663,371.868@664,369.375@665,368.959@666,369.253@667,371.649@668,376.808@669,383.039@670,388.264@671,394.340@672,401.682@673,405.263@674,405.812@675,410.446@676,416.496@677,425.288@678,437.500@679,448.885@680,455.751@681,456.773@682,452.935@683,445.414@684,438.521@685,432.448@686,426.898@687,420.824@688,411.123@689,401.170@690,398.002@691,398.789@692,397.629@693,389.956@694,379.959@695,372.809@696,373.167@697,375.567@698,376.490@699,375.423@700,373.581@701,372.777@702,376.310@703,381.843@704,384.610@705,383.657@706,381.790@707,384.082@708,392.567@709,403.700@710,412.897@711,423.379@712,434.809@713,441.615@714,443.944@715,444.684@716,441.160@717,436.838@718,435.297@719,436.931@720,441.605@721,453.032@722,464.662@723),
43
+ Linear(0,1270.384@1,1265.018@2,1259.210@3,1251.393@4,1243.258@5,1237.050@6,1233.921@7,1235.429@8,1240.590@9,1246.263@10,1250.597@11,1253.715@12,1256.037@13,1258.192@14,1263.054@15,1267.420@16,1272.722@17,1281.336@18,1291.790@19,1300.353@20,1307.048@21,1311.046@22,1311.789@23,1310.089@24,1307.155@25,1303.866@26,1298.408@27,1291.848@28,1283.574@29,1273.594@30,1261.874@31,1251.134@32,1240.855@33,1231.168@34,1223.346@35,1215.011@36,1206.447@37,1197.144@38,1189.678@39,1183.680@40,1177.212@41,1170.203@42,1161.957@43,1151.804@44,1142.057@45,1132.477@46,1123.275@47,1118.503@48,1112.404@49,1105.398@50,1095.659@51,1083.950@52,1072.132@53,1061.011@54,1051.380@55,1042.918@56,1034.932@57,1027.102@58,1020.540@59,1015.609@60,1012.103@61,1010.682@62,1010.153@63,1009.103@64,1005.949@65,1005.303@66,1003.911@67,1003.196@68,1006.535@69,1005.368@70,1003.068@71,997.065@72,991.365@73,991.970@74,989.753@75,985.897@76,984.704@77,982.039@78,979.873@79,975.034@80,967.331@81,961.102@82,952.825@83,942.511@84,929.587@85,919.589@86,914.161@87,915.142@88,915.479@89,910.643@90,904.245@91,900.706@92,899.635@93,898.883@94,897.438@95,894.998@96,890.813@97,886.380@98,881.431@99,878.073@100,875.779@101,875.727@102,874.737@103,875.422@104,873.740@105,874.601@106,871.515@107,870.001@108,872.714@109,875.026@110,880.580@111,885.265@112,885.627@113,884.873@114,887.652@115,889.177@116,893.414@117,897.473@118,895.291@119,893.600@120,889.793@121,885.663@122,881.694@123,871.472@124,871.515@125,872.425@126,873.653@127,873.535@128,873.680@129,872.228@130,872.850@131,868.703@132,872.495@133,871.605@134,871.139@135,874.024@136,868.901@137,865.924@138,866.015@139,868.505@140,866.083@141,861.642@142,853.000@143,840.100@144,831.035@145,817.987@146,805.370@147,794.860@148,786.167@149,779.556@150,776.245@151,772.067@152,767.290@153,760.981@154,754.144@155,740.371@156,738.797@157,736.492@158,732.471@159,729.017@160,723.478@161,721.078@162,722.714@163,730.493@164,734.852@165,740.374@166,746.028@167,748.590@168,749.439@169,749.378@170,744.662@171,744.447@172,738.066@173,727.039@174,714.391@175,701.885@176,690.334@177,681.911@178,673.075@179,667.813@180,663.179@181,663.926@182,660.895@183,656.991@184,647.964@185,634.857@186,622.241@187,610.018@188,595.988@189,584.033@190,572.617@191,561.645@192,549.520@193,537.376@194,530.325@195,524.475@196,520.762@197,517.653@198,513.254@199,510.852@200,509.426@201,505.445@202,500.921@203,496.967@204,493.832@205,491.852@206,486.842@207,483.244@208,478.337@209,474.603@210,472.572@211,471.440@212,469.078@213,465.570@214,461.447@215,452.830@216,444.488@217,436.141@218,429.443@219,419.540@220,407.613@221,395.482@222,383.362@223,373.219@224,365.985@225,358.449@226,351.731@227,344.956@228,339.706@229,335.227@230,330.376@231,324.758@232,320.047@233,318.289@234,312.003@235,307.477@236,301.075@237,293.532@238,280.046@239,261.120@240,248.235@241,240.311@242,234.996@243,228.891@244,222.688@245,215.138@246,208.660@247,202.807@248,198.655@249,198.945@250,198.870@251,200.638@252,200.541@253,199.886@254,195.374@255,190.530@256,186.711@257,182.067@258,177.680@259,173.420@260,169.807@261,166.745@262,165.630@263,163.886@264,167.088@265,167.997@266,175.328@267,181.659@268,184.447@269,185.444@270,193.694@271,191.082@272,195.351@273,204.050@274,215.294@275,226.309@276,242.847@277,264.571@278,272.935@279,273.023@280,276.527@281,282.187@282,286.113@283,293.890@284,298.056@285,300.449@286,300.610@287,294.953@288,288.439@289,282.358@290,274.939@291,269.800@292,263.226@293,257.181@294,253.236@295,252.929@296,256.552@297,261.579@298,274.354@299,288.221@300,305.834@301,314.324@302,323.301@303,331.185@304,342.582@305,355.005@306,363.024@307,372.766@308,383.649@309,388.691@310,389.913@311,387.173@312,385.262@313,380.522@314,377.141@315,374.438@316,371.633@317,372.653@318,378.444@319,386.834@320,397.298@321,408.731@322,420.731@323,435.166@324,450.697@325,464.210@326,477.827@327,490.259@328,504.011@329,519.664@330,537.524@331,555.037@332,570.879@333,585.493@334,597.786@335,610.524@336,628.718@337,642.153@338,654.602@339,665.032@340,676.410@341,686.119@342,700.442@343,714.115@344,726.179@345,737.899@346,749.030@347,759.819@348,771.032@349,778.394@350,779.660@351,779.208@352,778.061@353,776.475@354,774.152@355,771.311@356,765.780@357,756.597@358,744.021@359,731.599@360,716.464@361,701.346@362,683.547@363,667.333@364,654.131@365,641.992@366,632.972@367,627.004@368,628.644@369,630.788@370,631.183@371,631.558@372,636.838@373,642.570@374,644.819@375,641.803@376,638.849@377,640.273@378,644.099@379,649.015@380,652.317@381,657.158@382,661.674@383,663.489@384,660.592@385,657.040@386,657.167@387,660.004@388,663.498@389,667.853@390,672.761@391,678.532@392,687.455@393,695.732@394,703.641@395,709.695@396,717.403@397,724.436@398,730.838@399,736.459@400,743.963@401,756.114@402,769.873@403,783.302@404,794.300@405,806.020@406,816.000@407,821.476@408,824.986@409,830.346@410,837.683@411,843.809@412,848.074@413,853.962@414,861.369@415,875.297@416,892.585@417,908.259@418,920.172@419,931.560@420,944.157@421,951.624@422,957.208@423,960.195@424,964.122@425,970.771@426,977.598@427,983.028@428,990.187@429,996.909@430,1002.762@431,1006.792@432,1008.053@433,1010.291@434,1011.607@435,1011.058@436,1011.063@437,1011.991@438,1018.536@439,1025.168@440,1031.663@441,1037.002@442,1041.657@443,1044.788@444,1045.581@445,1044.856@446,1043.060@447,1041.122@448,1038.506@449,1036.043@450,1034.229@451,1035.109@452,1034.467@453,1034.057@454,1035.086@455,1039.008@456,1042.156@457,1046.517@458,1051.906@459,1059.370@460,1069.807@461,1084.469@462,1101.911@463,1123.397@464,1150.972@465,1172.995@466,1188.771@467,1198.648@468,1207.385@469,1219.736@470,1230.848@471,1240.014@472,1249.564@473,1259.740@474,1269.148@475,1276.481@476,1283.067@477,1288.785@478,1294.435@479,1298.464@480,1302.165@481,1306.973@482,1312.330@483,1319.388@484,1327.672@485,1337.719@486,1349.666@487,1368.421@488,1386.976@489,1400.548@490,1409.949@491,1420.008@492,1433.740@493,1447.738@494,1460.050@495,1473.873@496,1485.053@497,1494.213@498,1499.990@499,1505.355@500,1509.441@501,1509.032@502,1503.754@503,1495.447@504,1489.124@505,1485.053@506,1488.187@507,1495.125@508,1503.794@509,1512.897@510,1522.730@511,1530.687@512,1538.905@513,1545.548@514,1551.948@515,1556.521@516,1558.082@517,1559.728@518,1563.335@519,1566.934@520,1566.894@521,1564.065@522,1560.004@523,1555.809@524,1545.416@525,1534.691@526,1521.516@527,1513.810@528,1507.337@529,1502.981@530,1501.871@531,1504.260@532,1508.274@533,1510.547@534,1506.971@535,1502.931@536,1504.286@537,1507.804@538,1508.809@539,1506.996@540,1504.835@541,1502.498@542,1502.036@543,1503.727@544,1504.335@545,1506.914@546,1512.354@547,1516.468@548,1518.240@549,1516.902@550,1515.605@551,1513.794@552,1513.615@553,1514.746@554,1517.273@555,1521.156@556,1523.779@557,1521.732@558,1517.382@559,1516.663@560,1519.560@561,1522.735@562,1523.025@563,1525.220@564,1526.998@565,1531.045@566,1534.017@567,1535.814@568,1538.784@569,1543.663@570,1545.242@571,1548.230@572,1549.941@573,1549.977@574,1548.458@575,1548.548@576,1547.026@577,1546.468@578,1547.806@579,1552.178@580,1556.016@581,1554.588@582,1551.920@583,1553.051@584,1553.051@585,1554.612@586,1553.627@587,1550.160@588,1545.181@589,1536.076@590,1524.624@591,1513.532@592,1506.645@593,1500.658@594,1490.513@595,1479.624@596,1469.212@597,1461.258@598,1455.924@599,1452.339@600,1444.521@601,1442.841@602,1441.983@603,1441.609@604,1440.106@605,1435.359@606,1427.939@607,1428.559@608,1430.954@609,1433.838@610,1436.455@611,1439.715@612,1444.428@613,1448.274@614,1450.406@615,1455.362@616,1462.765@617,1471.543@618,1478.787@619,1483.445@620,1487.267@621,1489.991@622,1493.044@623,1495.613@624,1500.919@625,1505.035@626,1502.957@627,1500.101@628,1505.025@629,1501.343@630,1496.804@631,1494.597@632,1493.268@633,1491.187@634,1488.730@635,1484.998@636,1482.047@637,1479.836@638,1477.710@639,1476.703@640,1475.419@641,1474.948@642,1473.569@643,1471.988@644,1470.838@645,1472.259@646,1475.899@647,1482.086@648,1486.095@649,1489.197@650,1493.712@651,1498.850@652,1500.792@653,1503.327@654,1506.798@655,1512.990@656,1516.752@657,1519.423@658,1521.792@659,1524.405@660,1526.589@661,1524.410@662,1522.050@663,1517.863@664,1516.088@665,1513.314@666,1511.090@667,1510.360@668,1510.860@669,1513.268@670,1517.726@671,1521.507@672,1526.859@673,1530.931@674,1533.807@675,1536.135@676,1536.749@677,1538.556@678,1540.189@679,1541.257@680,1540.938@681,1540.376@682,1540.131@683,1538.784@684,1537.684@685,1536.047@686,1533.762@687,1531.756@688,1525.271@689,1516.446@690,1510.304@691,1506.698@692,1504.356@693,1503.891@694,1503.521@695,1501.238@696,1501.160@697,1502.907@698,1504.553@699,1509.307@700,1510.461@701,1509.803@702,1512.680@703,1512.417@704,1509.012@705,1508.563@706,1507.565@707,1505.130@708,1501.108@709,1493.775@710,1486.726@711,1481.300@712,1474.562@713,1463.707@714,1454.084@715,1444.620@716,1438.046@717,1436.815@718,1438.358@719,1439.573@720,1441.236@721,1444.136@722,1447.281@723),
44
+ Linear(0,476.897@1,468.504@2,461.051@3,455.243@4,451.174@5,448.587@6,446.299@7,443.662@8,440.213@9,440.052@10,445.554@11,456.156@12,469.066@13,482.426@14,494.997@15,505.060@16,511.067@17,512.923@18,508.617@19,500.131@20,489.264@21,476.104@22,461.382@23,448.621@24,438.050@25,429.912@26,424.614@27,421.494@28,417.270@29,412.029@30,408.675@31,408.542@32,413.937@33,422.259@34,429.647@35,435.662@36,437.353@37,436.394@38,432.563@39,426.771@40,421.052@41,417.139@42,416.406@43,416.580@44,417.306@45,416.150@46,413.925@47,410.959@48,407.768@49,403.222@50,397.784@51,393.268@52,391.078@53,391.224@54,392.884@55,394.655@56,395.687@57,394.621@58,393.101@59,392.975@60,395.799@61,403.544@62,413.144@63,416.213@64,413.695@65,408.892@66,401.647@67,395.869@68,392.841@69,390.275@70,387.254@71,384.868@72,384.008@73,379.931@74,371.455@75,360.323@76,346.484@77,333.904@78,324.079@79,316.431@80,309.945@81,305.190@82,299.456@83,292.523@84,286.047@85,281.932@86,281.461@87,285.158@88,287.918@89,286.285@90,280.858@91,274.182@92,270.746@93,270.977@94,274.745@95,280.101@96,286.277@97,292.295@98,295.824@99,297.216@100,296.971@101,294.974@102,294.355@103,291.004@104,285.000@105,279.140@106,271.779@107,264.691@108,260.153@109,258.931@110,264.812@111,274.712@112,280.994@113,286.438@114,290.706@115,294.231@116,304.403@117,320.451@118,332.867@119,340.857@120,344.749@121,345.952@122,347.235@123,347.455@124,346.367@125,344.778@126,342.799@127,338.430@128,330.815@129,318.508@130,306.342@131,293.344@132,285.298@133,282.629@134,282.893@135,285.522@136,284.229@137,283.755@138,281.501@139,278.031@140,277.846@141,277.915@142,276.759@143,275.960@144,273.264@145,269.605@146,266.451@147,265.817@148,266.403@149,267.116@150,269.149@151,273.648@152,278.625@153,282.261@154,283.106@155,283.125@156,287.346@157,294.866@158,300.888@159,304.245@160,305.606@161,305.228@162,304.725@163,310.816@164,318.305@165,324.892@166,329.670@167,333.093@168,333.857@169,327.690@170,314.901@171,298.678@172,283.095@173,268.653@174,257.526@175,248.479@176,241.984@177,238.488@178,239.036@179,241.965@180,252.861@181,267.433@182,283.293@183,300.079@184,318.211@185,333.859@186,347.787@187,361.141@188,370.612@189,373.728@190,371.499@191,368.384@192,366.696@193,365.010@194,362.388@195,360.444@196,360.349@197,359.767@198,359.594@199,359.231@200,359.930@201,361.842@202,367.691@203,381.912@204,399.393@205,414.315@206,429.024@207,439.068@208,444.641@209,447.463@210,450.607@211,454.671@212,458.591@213,460.840@214,460.025@215,457.734@216,452.331@217,446.723@218,444.863@219,445.575@220,446.371@221,444.263@222,442.577@223,443.308@224,442.974@225,445.393@226,448.480@227,454.860@228,464.896@229,472.748@230,480.312@231,485.215@232,484.911@233,483.034@234,484.709@235,486.776@236,485.899@237,484.237@238,483.489@239,479.033@240,470.291@241,455.733@242,441.942@243,429.740@244,417.970@245,409.707@246,408.176@247,409.078@248,412.219@249,417.267@250,427.418@251,443.494@252,457.501@253,462.827@254,462.020@255,460.473@256,459.236@257,458.833@258,463.251@259,470.675@260,481.094@261,489.514@262,500.056@263,508.827@264,516.218@265,516.743@266,518.271@267,521.615@268,521.034@269,523.021@270,522.922@271,522.941@272,523.047@273,523.296@274,521.258@275,519.915@276,515.584@277,514.142@278,516.298@279,522.749@280,522.885@281,519.208@282,520.962@283,529.112@284,540.408@285,555.206@286,569.517@287,580.793@288,583.482@289,580.964@290,582.264@291,586.929@292,588.863@293,585.649@294,580.639@295,576.428@296,569.571@297,562.202@298,558.006@299,556.519@300,556.065@301,558.322@302,562.452@303,561.743@304,559.420@305,558.850@306,558.859@307,559.768@308,556.515@309,554.789@310,552.657@311,551.484@312,549.503@313,549.261@314,551.827@315,551.495@316,544.737@317,535.295@318,527.511@319,521.405@320,515.865@321,510.356@322,506.104@323,506.359@324,510.086@325,518.208@326,525.988@327,529.559@328,530.211@329,533.810@330,537.331@331,542.348@332,543.123@333,546.045@334,545.846@335,547.159@336,546.741@337,547.858@338,549.855@339,550.232@340,547.729@341,544.414@342,539.794@343,533.843@344,526.854@345,522.153@346,520.400@347,522.430@348,526.781@349,532.180@350,536.195@351,536.002@352,534.559@353,534.110@354,535.233@355,535.996@356,536.253@357,536.455@358,536.592@359,536.766@360,538.751@361,537.359@362,537.346@363,539.089@364,540.177@365,539.958@366,538.024@367,535.749@368,532.678@369,525.220@370,513.817@371,503.816@372,499.229@373,499.608@374,502.592@375,507.474@376,508.999@377,505.385@378,497.264@379,486.421@380,474.749@381,465.593@382,460.415@383,458.706@384,457.907@385,458.645@386,461.196@387,466.434@388,473.350@389,477.884@390,478.254@391,477.278@392,480.206@393,486.623@394,494.505@395,504.769@396,520.766@397,534.005@398,545.358@399,555.036@400,562.060@401,562.966@402,562.359@403,562.426@404,562.328@405,561.878@406,560.327@407,557.333@408,550.503@409,540.539@410,531.186@411,524.604@412,519.965@413,515.854@414,513.512@415,513.918@416,513.449@417,514.302@418,516.909@419,525.266@420,535.101@421,540.976@422,545.530@423,551.910@424,556.677@425,560.639@426,566.215@427,572.107@428,577.683@429,579.533@430,577.286@431,567.729@432,555.471@433,545.985@434,533.116@435,515.120@436,500.454@437,490.503@438,484.514@439,479.907@440,477.653@441,482.205@442,495.383@443,505.534@444,512.681@445,520.315@446,528.198@447,535.887@448,544.899@449,554.276@450,560.765@451,563.318@452,563.503@453,560.158@454,556.180@455,552.484@456,549.791@457,544.018@458,538.682@459,537.842@460,538.872@461,540.689@462,541.099@463,543.185@464,549.711@465,552.371@466,549.451@467,546.774@468,547.674@469,550.028@470,553.899@471,561.211@472,567.349@473,569.714@474,568.504@475,566.666@476,563.236@477,556.955@478,548.755@479,541.693@480,536.481@481,534.886@482,534.454@483,536.212@484,538.518@485,542.802@486,554.393@487,566.803@488,563.670@489,553.609@490,548.025@491,548.972@492,555.439@493,561.684@494,565.584@495,565.109@496,563.158@497,563.819@498,568.660@499,570.470@500,564.350@501,554.721@502,549.937@503,552.733@504,560.469@505,565.195@506,563.595@507,558.687@508,557.666@509,562.366@510,564.770@511,561.763@512,555.773@513,549.109@514,545.252@515,545.740@516,546.895@517,543.595@518,535.537@519,525.909@520,518.288@521,517.850@522,518.283@523,511.351@524,501.350@525,498.301@526,504.421@527,517.852@528,529.093@529,532.825@530,530.993@531,534.737@532,543.448@533,544.484@534,534.116@535,527.313@536,528.673@537,533.577@538,535.854@539,533.291@540,528.158@541,521.411@542,513.486@543,506.830@544,502.010@545,497.726@546,491.756@547,485.548@548,483.810@549,485.455@550,486.098@551,483.740@552,478.858@553,475.641@554,476.575@555,485.694@556,489.750@557,483.497@558,479.709@559,482.094@560,486.523@561,491.507@562,491.096@563,488.397@564,484.460@565,482.817@566,482.478@567,478.665@568,467.453@569,452.905@570,439.513@571,430.135@572,423.598@573,417.688@574,409.438@575,399.788@576,389.850@577,383.576@578,383.708@579,391.572@580,393.060@581,385.389@582,380.735@583,384.196@584,391.975@585,399.506@586,401.050@587,399.057@588,398.292@589,397.804@590,396.282@591,395.381@592,396.132@593,398.398@594,398.958@595,397.241@596,395.804@597,393.056@598,389.986@599,386.734@600,384.811@601,382.314@602,384.889@603,390.447@604,392.091@605,391.888@606,394.175@607,398.838@608,406.595@609,413.355@610,415.077@611,412.838@612,409.711@613,406.310@614,401.014@615,394.231@616,385.908@617,376.067@618,360.760@619,346.978@620,339.337@621,331.615@622,321.774@623,313.034@624,308.034@625,309.008@626,319.470@627,331.586@628,335.907@629,339.770@630,349.007@631,365.130@632,383.514@633,397.869@634,402.871@635,403.245@636,404.040@637,406.518@638,410.812@639,413.975@640,416.173@641,416.172@642,415.708@643,414.175@644,410.781@645,405.238@646,398.648@647,392.842@648,387.031@649,384.289@650,382.685@651,380.832@652,380.101@653,378.215@654,377.087@655,378.051@656,379.690@657,378.677@658,377.496@659,377.315@660,376.812@661,373.877@662,369.292@663,366.322@664,363.882@665,363.535@666,363.917@667,366.313@668,371.439@669,377.643@670,382.865@671,388.951@672,396.342@673,400.085@674,400.792@675,405.474@676,411.543@677,420.285@678,432.364@679,443.688@680,450.527@681,451.579@682,447.843@683,440.385@684,433.545@685,427.471@686,421.920@687,415.961@688,406.600@689,396.924@690,393.735@691,394.283@692,393.002@693,385.452@694,375.686@695,368.710@696,369.035@697,371.402@698,372.392@699,371.519@700,369.912@701,369.273@702,372.647@703,377.908@704,380.578@705,379.766@706,378.135@707,380.534@708,388.930@709,399.988@710,409.209@711,419.635@712,430.995@713,437.774@714,440.152@715,440.860@716,437.365@717,432.982@718,431.454@719,433.096@720,437.785@721,449.262@722,461.059@723),
45
+ 0, 0,
46
+ Background.width, 0,
47
+ Background.width, Background.height,
48
+ 0, Background.height,
49
+ "default",
50
+ xFilter,
51
+ 0,
52
+ 0.5,
53
+ 0,
54
+ 1,
55
+ "Over",
56
+ 1,
57
+ "v1.2",
58
+ 1,
59
+ 1-723,
60
+ "1/16",
61
+ "luminance",
62
+ 0.75,
63
+ "use start frame",
64
+ 0.5,
65
+ "stop",
66
+ 1,
67
+ "Auto0014", 1287.83-height/25, 1287.83+height/25, 959.808-height/25, 959.808+height/25, 1287.83-height/15, 1287.83+height/15, 959.808-height/15, 959.808+height/15,
68
+ "Auto0013", 1365.64-height/25, 1365.64+height/25, 974.464-height/25, 974.464+height/25, 1365.64-height/15, 1365.64+height/15, 974.464-height/15, 974.464+height/15,
69
+ "Auto6862", 1302.24-height/25, 1302.24+height/25, 480.851-height/25, 480.851+height/25, 1302.24-height/15, 1302.24+height/15, 480.851-height/15, 480.851+height/15,
70
+ "Auto0098", 1270.38-height/25, 1270.38+height/25, 476.897-height/25, 476.897+height/25, 1270.38-height/15, 1270.38+height/15, 476.897-height/15, 476.897+height/15);
71
+
72
+ rzStabilize = Stabilize (
73
+ 0,
74
+ 1,
75
+ 1,
76
+ "4 point",
77
+ Linear(0,1287.833@1,1293.384@2,1299.374@3,1304.682@4,1309.241@5,1312.448@6,1318.103@7,1328.551@8,1343.103@9,1357.713@10,1370.103@11,1382.258@12,1394.262@13,1408.090@14,1424.183@15,1440.689@16,1457.949@17,1481.027@18,1505.287@19,1528.126@20,1548.951@21,1566.424@22,1578.772@23,1590.524@24,1604.637@25,1616.172@26,1624.566@27,1630.214@28,1637.483@29,1644.249@30,1650.707@31,1657.045@32,1665.528@33,1676.687@34,1688.564@35,1699.826@36,1710.713@37,1720.316@38,1729.932@39,1740.705@40,1750.201@41,1757.148@42,1763.280@43,1769.984@44,1779.493@45,1791.606@46,1807.083@47,1822.467@48,1837.711@49,1850.675@50,1863.772@51,1875.365@52,1886.561@53,1895.849@54,1904.328@55,1913.690@56,1925.657@57,1942.352@58,1963.208@59,1988.384@60,2009.495@61,2030.326@62,2054.291@63,2082.462@64,2108.343@65,2130.351@66,2146.320@67,2164.097@68,2190.026@69,2217.109@70,2242.774@71,2266.775@72,2293.073@73,2318.102@74,2340.789@75,2364.132@76,2388.241@77,2412.133@78,2437.081@79,2454.811@80,2470.899@81,2501.989@82,2518.498@83,2539.109@84,2555.652@85,2579.335@86,2606.970@87,2643.313@88,2688.106@89,2715.635@90,2751.702@91,2770.317@92,2801.313@93,2829.672@94,2852.742@95,2892.695@96,2930.044@97,2955.036@98,2989.838@99,3014.847@100,3041.208@101,3075.321@102,3100.772@103,3132.602@104,3166.065@105,3199.796@106,3230.168@107,3273.482@108,3314.583@109,3358.300@110,3411.607@111,3462.084@112,3506.422@113,3573.670@114,3628.857@115,3681.758@116,3731.323@117,3787.786@118,3840.645@119,3897.596@120,3950.908@121,3996.537@122,4037.743@123,4110.740@124,4157.843@125,4206.390@126,4261.870@127,4303.520@128,4351.417@129,4420.217@130,4475.102@131,4551.862@132,4598.217@133,4679.059@134,4750.771@135,4827.735@136,4912.118@137,4981.058@138,5051.585@139,5113.068@140,5208.434@141,5289.896@142,5355.633@143,5418.033@144,5470.784@145,5514.120@146,5540.651@147,5605.974@148,5670.494@149,5740.015@150,5828.046@151,5911.390@152,6002.938@153,6100.742@154,6198.958@155,6357.661@156,6458.007@157,6577.269@158,6698.242@159,6822.496@160,6988.138@161,7152.607@162,7395.961@163,7640.986@164,7888.094@165,8126.700@166,8405.738@167,8647.496@168,8894.444@169,9117.896@170,9388.567@171,9617.062@172,9798.764@173,9930.235@174,10061.668@175,10189.164@176,10322.548@177,10552.367@178,10907.481@179,11287.920@180,11732.595@181,12300.325@182,12850.437@183,13423.551@184,13928.709@185,14301.917@186,14696.944@187,15129.737@188,15564.197@189,16074.880@190,16589.081@191,17298.093@192,17918.779@193,18733.386@194,19686.477@195,21131.362@196,22556.985@197,24492.429@198,26713.045@199,29530.957@200,32954.741@201,38158.027@202,44019.799@203,55283.022@204,74445.589@205,109015.428@206,208464.264@207,906671.157@208,-1764885.557@498,-191234.756@499,-103888.825@500,-73344.185@501,-58096.950@502,-50028.422@503,-44935.654@504,-40128.783@505,-35720.151@506,-31242.928@507,-27288.144@508,-23562.164@509,-20782.501@510,-18563.916@511,-16868.464@512,-15306.966@513,-14127.063@514,-13152.815@515,-12402.276@516,-11767.329@517,-11154.623@518,-10621.378@519,-10085.838@520,-9641.334@521,-9302.856@522,-9024.123@523,-8787.094@524,-8576.504@525,-8445.063@526,-8328.538@527,-8203.622@528,-8026.309@529,-7810.794@530,-7543.511@531,-7274.554@532,-7009.033@533,-6740.826@534,-6541.905@535,-6375.530@536,-6175.996@537,-5981.692@538,-5804.610@539,-5652.006@540,-5508.180@541,-5383.099@542,-5228.788@543,-5053.723@544,-4913.720@545,-4763.071@546,-4605.989@547,-4466.990@548,-4350.393@549,-4257.360@550,-4171.832@551,-4072.546@552,-3966.789@553,-3859.631@554,-3760.853@555,-3658.326@556,-3571.147@557,-3486.550@558,-3428.547@559,-3361.846@560,-3287.235@561,-3211.671@562,-3139.514@563,-3071.373@564,-2987.551@565,-2907.573@566,-2839.125@567,-2772.309@568,-2694.636@569,-2617.865@570,-2541.356@571,-2473.678@572,-2422.296@573,-2376.463@574,-2320.731@575,-2263.142@576,-2209.951@577,-2155.587@578,-2099.155@579,-2047.314@580,-1989.046@581,-1926.242@582,-1880.511@583,-1848.128@584,-1817.141@585,-1780.819@586,-1743.359@587,-1707.240@588,-1675.382@589,-1652.646@590,-1634.855@591,-1617.675@592,-1594.949@593,-1571.679@594,-1554.016@595,-1537.704@596,-1518.375@597,-1497.862@598,-1468.625@599,-1436.100@600,-1398.011@601,-1364.655@602,-1334.626@603,-1301.095@604,-1266.134@605,-1233.201@606,-1198.264@607,-1169.244@608,-1140.897@609,-1109.588@610,-1073.782@611,-1036.349@612,-993.605@613,-953.561@614,-914.880@615,-873.978@616,-831.203@617,-789.136@618,-739.654@619,-699.956@620,-670.887@621,-639.588@622,-606.269@623,-572.559@624,-534.696@625,-503.511@626,-477.135@627,-452.615@628,-417.315@629,-388.901@630,-368.608@631,-355.537@632,-345.482@633,-330.939@634,-309.712@635,-287.346@636,-263.025@637,-242.522@638,-220.525@639,-195.317@640,-172.905@641,-150.264@642,-128.183@643,-107.347@644,-84.652@645,-63.244@646,-39.545@647,-12.636@648,14.266@649,40.634@650,69.036@651,95.649@652,119.930@653,142.697@654,166.576@655,190.020@656,213.313@657,235.912@658,258.271@659,279.847@660,301.297@661,321.958@662,340.839@663,357.237@664,374.745@665,392.369@666,411.207@667,427.840@668,446.453@669,466.492@670,488.650@671,510.030@672,532.283@673,558.603@674,582.768@675,602.503@676,620.508@677,638.245@678,654.319@679,670.033@680,685.843@681,702.641@682,719.592@683,736.011@684,754.367@685,770.678@686,785.810@687,802.571@688,819.062@689,834.057@690,845.101@691,853.741@692,866.782@693,885.905@694,907.298@695,926.053@696,942.974@697,960.729@698,980.894@699,1004.114@700,1026.264@701,1046.505@702,1061.919@703,1074.393@704,1087.495@705,1105.106@706,1123.376@707,1140.215@708,1151.522@709,1160.318@710,1174.536@711,1183.845@712,1191.975@713,1199.557@714,1205.831@715,1213.101@716,1223.578@717,1236.587@718,1252.982@719,1271.593@720,1289.950@721,1308.732@722,1331.112@723),
78
+ Linear(0,959.808@1,953.190@2,947.649@3,943.525@4,940.979@5,940.064@6,939.673@7,939.564@8,938.608@9,940.271@10,949.102@11,961.674@12,977.452@13,993.880@14,1009.025@15,1022.036@16,1031.647@17,1037.574@18,1036.319@19,1031.553@20,1024.059@21,1015.130@22,1004.690@23,996.117@24,988.443@25,983.182@26,982.634@27,983.488@28,983.482@29,979.660@30,976.283@31,979.002@32,984.716@33,994.342@34,1003.553@35,1009.024@36,1012.472@37,1013.229@38,1013.491@39,1011.511@40,1010.238@41,1014.703@42,1019.308@43,1024.282@44,1026.493@45,1025.323@46,1022.066@47,1019.643@48,1019.091@49,1014.703@50,1006.585@51,999.692@52,995.015@53,994.890@54,1000.097@55,1008.972@56,1014.099@57,1012.188@58,1006.405@59,1000.875@60,999.578@61,1012.991@62,1026.483@63,1025.926@64,1015.081@65,1004.151@66,997.181@67,996.434@68,993.787@69,980.202@70,964.285@71,958.628@72,962.559@73,956.161@74,947.745@75,934.418@76,914.127@77,901.188@78,888.563@79,885.492@80,887.007@81,882.566@82,872.129@83,858.191@84,839.133@85,819.559@86,805.169@87,794.400@88,771.033@89,735.934@90,715.478@91,711.050@92,720.196@93,736.413@94,742.498@95,733.129@96,715.228@97,702.472@98,692.726@99,704.706@100,718.262@101,723.192@102,739.943@103,749.490@104,764.349@105,766.992@106,780.319@107,781.231@108,776.468@109,784.146@110,803.647@111,806.068@112,800.191@113,788.046@114,778.838@115,797.675@116,844.478@117,881.039@118,890.773@119,868.956@120,849.016@121,857.219@122,876.667@123,918.794@124,913.290@125,899.283@126,893.817@127,904.817@128,919.806@129,940.253@130,908.834@131,888.308@132,867.164@133,882.806@134,887.999@135,876.613@136,855.585@137,840.802@138,856.413@139,897.744@140,920.706@141,923.714@142,902.249@143,874.947@144,866.615@145,882.794@146,893.016@147,860.424@148,821.434@149,827.286@150,879.133@151,931.643@152,945.073@153,932.144@154,925.282@155,962.478@156,985.963@157,1000.837@158,986.626@159,970.871@160,969.164@161,1001.294@162,1084.908@163,1164.025@164,1210.719@165,1230.134@166,1247.604@167,1258.699@168,1232.129@169,1231.563@170,1310.741@171,1403.132@172,1443.202@173,1457.536@174,1491.305@175,1551.455@176,1601.012@177,1589.509@178,1544.679@179,1559.066@180,1609.430@181,1644.883@182,1674.695@183,1752.540@184,1797.025@185,1869.450@186,2020.373@187,2175.490@188,2297.335@189,2417.974@190,2555.636@191,2733.099@192,2837.992@193,2921.702@194,3047.504@195,3281.952@196,3530.237@197,3916.188@198,4370.498@199,4869.991@200,5320.010@201,5983.051@202,6747.388@203,8171.100@204,10093.313@205,13650.440@206,24493.822@207,103727.503@208,196734.905@498,20565.008@499,11425.652@500,9080.709@501,8167.564@502,7272.289@503,6044.250@504,4698.485@505,3829.067@506,3443.187@507,3227.223@508,2819.112@509,2414.688@510,2228.005@511,2147.097@512,2095.852@513,2043.280@514,1931.212@515,1774.661@516,1643.347@517,1611.090@518,1681.325@519,1769.254@520,1801.284@521,1743.213@522,1733.593@523,1851.540@524,1993.930@525,2047.608@526,2005.105@527,1918.656@528,1865.578@529,1890.839@530,1925.595@531,1874.579@532,1768.665@533,1694.189@534,1672.731@535,1630.007@536,1538.920@537,1436.546@538,1382.296@539,1389.214@540,1417.570@541,1442.134@542,1472.894@543,1480.139@544,1464.392@545,1454.605@546,1445.738@547,1419.978@548,1357.536@549,1301.565@550,1285.062@551,1314.929@552,1370.209@553,1405.815@554,1417.071@555,1400.108@556,1406.414@557,1448.928@558,1471.493@559,1447.072@560,1404.201@561,1371.023@562,1375.977@563,1393.874@564,1408.736@565,1397.743@566,1360.659@567,1335.093@568,1344.134@569,1351.142@570,1335.840@571,1293.308@572,1249.042@573,1223.436@574,1220.524@575,1223.762@576,1239.744@577,1254.082@578,1247.739@579,1239.473@580,1266.007@581,1303.748@582,1316.362@583,1282.333@584,1229.138@585,1185.992@586,1176.636@587,1181.403@588,1181.911@589,1182.637@590,1187.948@591,1190.616@592,1185.397@593,1172.880@594,1164.520@595,1161.053@596,1149.801@597,1138.524@598,1126.959@599,1114.719@600,1103.890@601,1102.189@602,1097.631@603,1101.271@604,1117.237@605,1137.106@606,1139.562@607,1123.686@608,1097.499@609,1086.393@610,1090.011@611,1097.447@612,1100.779@613,1096.610@614,1092.566@615,1083.480@616,1071.503@617,1065.559@618,1064.165@619,1051.208@620,1029.687@621,1011.690@622,1003.479@623,999.159@624,994.146@625,987.962@626,979.060@627,984.725@628,1002.722@629,1016.660@630,1020.678@631,1007.495@632,987.251@633,974.904@634,977.422@635,985.827@636,989.834@637,991.939@638,994.722@639,999.059@640,1000.108@641,997.755@642,995.588@643,993.129@644,984.768@645,972.562@646,955.373@647,938.290@648,928.485@649,924.880@650,925.331@651,922.179@652,915.648@653,910.914@654,906.441@655,899.666@656,892.899@657,890.115@658,887.440@659,885.143@660,884.691@661,887.182@662,888.529@663,886.374@664,885.912@665,887.306@666,889.219@667,888.793@668,888.825@669,890.481@670,894.079@671,896.264@672,903.853@673,914.274@674,920.053@675,923.543@676,928.656@677,932.229@678,935.524@679,941.124@680,945.506@681,946.470@682,944.470@683,938.097@684,932.176@685,928.005@686,922.611@687,920.881@688,920.889@689,919.197@690,915.418@691,910.866@692,907.131@693,903.085@694,899.599@695,895.675@696,895.224@697,897.724@698,900.679@699,903.546@700,905.797@701,906.345@702,906.960@703,907.263@704,907.921@705,908.403@706,908.563@707,911.000@708,917.417@709,926.478@710,934.983@711,943.224@712,952.591@713,959.094@714,960.624@715,960.082@716,955.291@717,949.889@718,946.859@719,946.695@720,950.032@721,958.914@722,971.914@723),
79
+ 1,
80
+ 1,
81
+ Linear(0,1365.641@1,1371.501@2,1377.848@3,1383.524@4,1388.435@5,1391.929@6,1397.890@7,1408.702@8,1423.688@9,1438.721@10,1451.568@11,1464.249@12,1476.799@13,1491.261@14,1508.012@15,1525.204@16,1543.151@17,1567.046@18,1592.080@19,1615.683@20,1637.221@21,1655.337@22,1668.175@23,1680.466@24,1695.262@25,1707.397@26,1716.347@27,1722.463@28,1730.310@29,1737.628@30,1744.665@31,1751.619@32,1760.813@33,1772.838@34,1785.567@35,1797.633@36,1809.315@37,1819.664@38,1829.998@39,1841.495@40,1851.686@41,1859.275@42,1866.026@43,1873.421@44,1883.713@45,1896.702@46,1913.234@47,1929.560@48,1945.823@49,1959.657@50,1973.652@51,1986.132@52,1998.213@53,2008.316@54,2017.623@55,2027.896@56,2040.866@57,2058.749@58,2080.971@59,2107.783@60,2130.350@61,2152.771@62,2178.531@63,2208.585@64,2236.251@65,2259.646@66,2276.765@67,2296.048@68,2323.667@69,2352.498@70,2379.852@71,2405.959@72,2434.823@73,2461.689@74,2486.330@75,2511.700@76,2537.841@77,2563.775@78,2590.864@79,2610.594@80,2628.473@81,2662.424@82,2680.754@83,2703.495@84,2722.042@85,2748.132@86,2778.518@87,2818.468@88,2867.377@89,2897.293@90,2937.238@91,2958.308@92,2992.726@93,3024.444@94,3050.627@95,3095.214@96,3136.715@97,3165.188@98,3204.070@99,3232.612@100,3262.713@101,3301.420@102,3331.554@103,3367.961@104,3406.050@105,3444.928@106,3479.365@107,3528.785@108,3576.219@109,3626.765@110,3688.376@111,3745.735@112,3797.178@113,3875.236@114,3939.134@115,4000.918@116,4060.363@117,4127.281@118,4189.665@119,4256.153@120,4319.367@121,4375.331@122,4425.347@123,4512.192@124,4569.518@125,4628.430@126,4696.294@127,4747.333@128,4806.112@129,4892.471@130,4960.061@131,5053.482@132,5112.408@133,5212.142@134,5301.816@135,5398.977@136,5504.970@137,5591.280@138,5681.713@139,5762.591@140,5885.402@141,5993.355@142,6078.107@143,6158.831@144,6230.275@145,6288.798@146,6325.438@147,6412.668@148,6498.955@149,6592.792@150,6711.799@151,6826.253@152,6951.179@153,7084.218@154,7220.670@155,7438.666@156,7581.804@157,7751.458@158,7924.953@159,8105.045@160,8345.460@161,8587.060@162,8947.359@163,9315.726@164,9693.379@165,10067.298@166,10516.575@167,10910.287@168,11321.617@169,11700.813@170,12166.055@171,12574.328@172,12904.193@173,13145.131@174,13390.739@175,13631.681@176,13888.328@177,14330.023@178,15016.224@179,15776.072@180,16695.555@181,17934.611@182,19178.094@183,20553.013@184,21826.159@185,22817.417@186,23906.560@187,25165.998@188,26460.336@189,28073.594@190,29802.904@191,32344.662@192,34736.851@193,38127.597@194,42572.985@195,50442.975@196,60082.634@197,77357.754@198,107231.161@199,181032.578@200,564481.829@201,-417371.331@498,-141326.216@499,-87016.221@500,-64496.799@501,-52353.423@502,-45688.804@503,-41390.775@504,-37282.064@505,-33450.774@506,-29467.591@507,-25900.211@508,-22510.489@509,-19958.068@510,-17891.960@511,-16305.083@512,-14832.278@513,-13715.610@514,-12787.815@515,-12068.309@516,-11459.485@517,-10873.425@518,-10358.579@519,-9842.674@520,-9412.748@521,-9085.937@522,-8816.275@523,-8583.260@524,-8379.426@525,-8248.625@526,-8137.580@527,-8014.985@528,-7843.377@529,-7633.587@530,-7373.158@531,-7112.291@532,-6854.377@533,-6593.940@534,-6400.965@535,-6239.341@536,-6044.193@537,-5854.072@538,-5681.853@539,-5532.780@540,-5391.388@541,-5267.744@542,-5116.589@543,-4945.063@544,-4807.562@545,-4659.833@546,-4505.128@547,-4368.311@548,-4253.973@549,-4162.613@550,-4078.003@551,-3980.045@552,-3875.723@553,-3770.190@554,-3672.525@555,-3571.885@556,-3485.871@557,-3402.074@558,-3343.915@559,-3278.006@560,-3204.455@561,-3129.851@562,-3058.746@563,-2991.015@564,-2908.177@565,-2829.035@566,-2761.476@567,-2695.434@568,-2618.691@569,-2542.583@570,-2467.342@571,-2400.712@572,-2349.851@573,-2304.178@574,-2248.992@575,-2191.846@576,-2139.029@577,-2085.235@578,-2029.454@579,-1978.294@580,-1920.687@581,-1858.564@582,-1813.090@583,-1780.653@584,-1750.387@585,-1714.472@586,-1677.288@587,-1641.157@588,-1609.213@589,-1586.286@590,-1567.965@591,-1550.368@592,-1527.440@593,-1504.151@594,-1486.331@595,-1469.766@596,-1450.235@597,-1429.581@598,-1400.477@599,-1368.182@600,-1330.711@601,-1297.521@602,-1267.661@603,-1234.341@604,-1199.587@605,-1166.762@606,-1132.348@607,-1103.639@608,-1075.770@609,-1044.758@610,-1009.249@611,-972.172@612,-929.856@613,-890.265@614,-852.000@615,-811.617@616,-769.464@617,-727.985@618,-679.117@619,-639.840@620,-611.136@621,-580.212@622,-547.213@623,-513.820@624,-476.309@625,-445.339@626,-419.280@627,-395.013@628,-359.739@629,-331.461@630,-311.175@631,-298.060@632,-288.084@633,-273.645@634,-252.451@635,-230.085@636,-205.735@637,-185.227@638,-163.247@639,-138.092@640,-115.685@641,-93.088@642,-71.031@643,-50.195@644,-27.573@645,-6.251@646,17.270@647,43.927@648,70.663@649,96.934@650,125.238@651,151.767@652,175.980@653,198.686@654,222.533@655,245.929@656,269.177@657,291.837@658,314.227@659,335.821@660,357.382@661,378.213@662,397.263@663,413.777@664,431.443@665,449.272@666,468.251@667,485.017@668,503.724@669,523.876@670,546.145@671,567.633@672,590.102@673,616.656@674,641.019@675,660.949@676,679.134@677,697.071@678,713.255@679,729.207@680,745.282@681,762.350@682,779.583@683,796.226@684,814.877@685,831.481@686,846.847@687,863.948@688,880.861@689,896.277@690,907.623@691,916.486@692,929.790@693,949.249@694,971.088@695,990.206@696,1007.462@697,1025.568@698,1046.154@699,1069.844@700,1092.460@701,1113.122@702,1128.912@703,1141.697@704,1155.161@705,1173.293@706,1192.040@707,1209.352@708,1221.151@709,1230.380@710,1245.179@711,1254.906@712,1263.464@713,1271.508@714,1278.223@715,1285.904@716,1296.781@717,1310.184@718,1327.020@719,1346.195@720,1365.115@721,1384.501@722,1407.622@723),
82
+ Linear(0,974.464@1,967.428@2,961.271@3,956.585@4,953.695@5,952.903@6,952.743@7,952.925@8,952.021@9,953.927@10,963.207@11,976.195@12,992.229@13,1008.876@14,1024.232@15,1037.451@16,1047.154@17,1053.203@18,1051.967@19,1047.011@20,1039.547@21,1030.804@22,1020.433@23,1011.830@24,1003.899@25,998.544@26,998.275@27,999.466@28,999.535@29,995.391@30,991.668@31,994.389@32,999.964@33,1009.382@34,1018.362@35,1023.530@36,1026.843@37,1027.627@38,1028.217@39,1026.519@40,1025.768@41,1031.135@42,1036.439@43,1041.846@44,1043.949@45,1042.330@46,1038.696@47,1036.056@48,1035.576@49,1030.949@50,1022.227@51,1014.772@52,1009.507@53,1009.147@54,1014.743@55,1024.336@56,1029.840@57,1027.667@58,1021.195@59,1014.971@60,1013.316@61,1027.376@62,1041.379@63,1040.239@64,1028.535@65,1016.817@66,1009.887@67,1009.822@68,1007.142@69,992.337@70,975.005@71,969.165@72,973.892@73,967.241@74,958.988@75,945.522@76,924.712@77,911.811@78,899.041@79,896.678@80,899.064@81,894.825@82,884.152@83,869.573@84,849.452@85,828.461@86,812.976@87,801.056@88,775.201@89,736.860@90,715.051@91,711.070@92,721.627@93,739.615@94,746.260@95,735.629@96,715.536@97,701.261@98,690.421@99,703.723@100,718.894@101,724.867@102,744.083@103,755.251@104,772.423@105,776.451@106,792.044@107,794.050@108,789.777@109,798.854@110,820.386@111,822.274@112,815.497@113,801.896@114,791.546@115,812.403@116,864.100@117,903.849@118,913.860@119,888.933@120,866.574@121,876.271@122,898.312@123,945.796@124,940.363@125,925.461@126,920.229@127,933.654@128,952.068@129,977.660@130,944.526@131,923.342@132,901.374@133,920.107@134,926.653@135,914.496@136,891.127@137,874.775@138,893.939@139,942.768@140,970.417@141,975.141@142,950.959@143,920.082@144,911.629@145,931.672@146,944.548@147,907.589@148,862.855@149,870.329@150,931.964@151,994.267@152,1010.644@153,995.973@154,988.961@155,1035.251@156,1064.556@157,1083.149@158,1066.855@159,1049.364@160,1049.682@161,1091.854@162,1199.132@163,1301.081@164,1363.620@165,1393.259@166,1422.939@167,1443.450@168,1416.861@169,1424.743@170,1541.968@171,1679.554@172,1746.930@173,1777.794@174,1834.292@175,1926.502@176,2005.165@177,2005.176@178,1963.473@179,2005.721@180,2102.166@181,2188.373@182,2266.071@183,2424.362@184,2529.570@185,2674.001@186,2956.527@187,3264.245@188,3527.674@189,3819.724@190,4165.424@191,4651.226@192,5009.051@193,5404.847@194,5985.738@195,7118.555@196,8549.959@197,11270.188@198,16022.929@199,27281.644@200,83026.021@201,47698.586@498,15599.495@499,9823.837@500,8177.844@501,7520.242@502,6783.471@503,5696.201@504,4480.442@505,3689.950@506,3341.169@507,3147.344@508,2767.632@509,2385.818@510,2208.860@511,2132.875@512,2084.821@513,2034.827@514,1926.358@515,1773.799@516,1645.881@517,1614.874@518,1683.565@519,1769.595@520,1800.990@521,1744.497@522,1735.429@523,1850.773@524,1990.762@525,2043.006@526,2001.986@527,1917.258@528,1865.513@529,1890.290@530,1924.346@531,1874.195@532,1770.364@533,1697.126@534,1676.148@535,1634.094@536,1544.312@537,1443.437@538,1390.188@539,1396.960@540,1424.755@541,1448.600@542,1478.717@543,1485.830@544,1470.200@545,1460.504@546,1451.412@547,1425.823@548,1364.351@549,1309.296@550,1292.903@551,1322.176@552,1376.388@553,1411.257@554,1422.142@555,1405.493@556,1411.619@557,1453.226@558,1475.199@559,1451.134@560,1408.856@561,1376.219@562,1380.991@563,1398.348@564,1412.789@565,1401.817@566,1365.243@567,1339.974@568,1348.573@569,1355.103@570,1339.822@571,1297.870@572,1254.149@573,1228.781@574,1225.712@575,1228.645@576,1244.015@577,1257.954@578,1251.680@579,1243.611@580,1269.613@581,1306.440@582,1318.662@583,1285.100@584,1233.089@585,1190.769@586,1181.584@587,1186.036@588,1186.368@589,1186.946@590,1191.988@591,1194.449@592,1189.231@593,1176.948@594,1168.670@595,1165.166@596,1154.024@597,1142.843@598,1131.351@599,1119.165@600,1108.538@601,1106.717@602,1102.186@603,1105.748@604,1121.284@605,1140.601@606,1143.074@607,1127.621@608,1102.206@609,1091.343@610,1094.827@611,1101.911@612,1104.932@613,1100.690@614,1096.569@615,1087.523@616,1075.603@617,1069.493@618,1067.665@619,1054.642@620,1033.491@621,1015.728@622,1007.424@623,1002.928@624,997.801@625,991.717@626,983.311@627,989.105@628,1006.503@629,1020.011@630,1024.008@631,1011.489@632,992.307@633,980.669@634,983.104@635,991.162@636,994.906@637,996.929@638,999.687@639,1003.910@640,1004.994@641,1002.714@642,1000.620@643,998.122@644,989.933@645,977.979@646,961.158@647,944.596@648,935.029@649,931.519@650,931.894@651,928.849@652,922.573@653,918.013@654,913.701@655,907.214@656,900.825@657,898.156@658,895.520@659,893.306@660,892.879@661,895.167@662,896.298@663,894.131@664,893.608@665,894.905@666,896.737@667,896.455@668,896.776@669,898.684@670,902.451@671,904.807@672,912.378@673,922.531@674,928.075@675,931.610@676,936.859@677,940.735@678,944.599@679,950.498@680,955.071@681,956.077@682,953.921@683,947.521@684,941.586@685,937.506@686,932.249@687,930.338@688,929.638@689,927.397@690,923.775@691,919.873@692,916.551@693,912.373@694,908.473@695,904.333@696,904.127@697,906.869@698,909.846@699,912.434@700,914.360@701,914.785@702,915.883@703,916.972@704,918.039@705,918.318@706,918.132@707,920.539@708,927.247@709,936.625@710,945.266@711,953.776@712,963.434@713,970.152@714,971.617@715,971.262@716,966.556@717,961.429@718,958.554@719,958.562@720,962.076@721,971.049@722,983.937@723),
83
+ 1,
84
+ 1,
85
+ Linear(0,1302.239@1,1297.009@2,1291.390@3,1283.707@4,1275.680@5,1269.599@6,1266.602@7,1268.242@8,1273.597@9,1279.370@10,1283.902@11,1287.293@12,1289.812@13,1292.175@14,1297.260@15,1301.869@16,1307.456@17,1316.331@18,1327.023@19,1335.904@20,1342.865@21,1347.121@22,1348.098@23,1346.625@24,1343.950@25,1340.888@26,1335.624@27,1329.236@28,1321.172@29,1311.368@30,1299.772@31,1289.246@32,1279.016@33,1269.514@34,1261.889@35,1253.632@36,1245.232@37,1236.116@38,1228.821@39,1222.999@40,1216.641@41,1209.804@42,1201.715@43,1191.739@44,1182.176@45,1172.802@46,1163.642@47,1159.110@48,1153.173@49,1146.327@50,1136.804@51,1125.245@52,1113.573@53,1102.632@54,1093.135@55,1084.805@56,1076.953@57,1069.265@58,1062.795@59,1057.864@60,1054.211@61,1052.747@62,1052.153@63,1051.106@64,1047.715@65,1047.120@66,1045.724@67,1044.682@68,1048.314@69,1047.349@70,1045.161@71,1038.845@72,1032.737@73,1033.532@74,1031.204@75,1027.233@76,1025.768@77,1023.185@78,1021.067@79,1015.895@80,1008.245@81,1002.297@82,993.854@83,983.516@84,970.252@85,960.143@86,954.587@87,955.212@88,955.456@89,950.638@90,944.089@91,940.265@92,939.415@93,938.729@94,936.859@95,934.141@96,929.851@97,924.822@98,919.905@99,916.414@100,913.995@101,913.804@102,912.079@103,912.582@104,911.006@105,911.530@106,908.737@107,907.201@108,909.491@109,911.478@110,916.727@111,921.542@112,921.583@113,920.482@114,923.100@115,924.547@116,928.294@117,932.091@118,929.766@119,928.035@120,923.977@121,919.299@122,915.131@123,905.249@124,904.930@125,905.526@126,906.378@127,906.111@128,906.126@129,904.129@130,904.464@131,900.345@132,903.624@133,902.732@134,902.066@135,904.584@136,899.264@137,896.241@138,896.108@139,898.240@140,895.631@141,890.675@142,881.923@143,868.917@144,859.461@145,846.214@146,833.407@147,822.594@148,813.616@149,806.761@150,803.280@151,798.851@152,793.843@153,787.334@154,780.164@155,766.266@156,764.345@157,761.727@158,757.345@159,753.522@160,747.652@161,744.995@162,746.439@163,754.069@164,758.226@165,763.435@166,768.638@167,770.903@168,771.368@169,771.005@170,766.064@171,765.574@172,758.906@173,747.621@174,734.688@175,721.931@176,710.091@177,701.289@178,692.057@179,686.452@180,681.476@181,681.758@182,678.392@183,674.111@184,664.703@185,651.239@186,638.317@187,625.732@188,611.395@189,599.084@190,587.312@191,575.942@192,563.445@193,550.888@194,543.465@195,537.210@196,533.135@197,529.663@198,524.901@199,522.114@200,520.278@201,515.855@202,510.921@203,506.496@204,502.883@205,500.446@206,494.972@207,490.974@208,485.644@209,481.540@210,479.114@211,477.558@212,474.740@213,470.806@214,466.242@215,457.183@216,448.429@217,439.682@218,432.537@219,422.139@220,409.827@221,397.293@222,384.731@223,374.149@224,366.490@225,358.509@226,351.339@227,344.088@228,338.372@229,333.452@230,328.134@231,322.065@232,316.957@233,314.740@234,308.077@235,303.142@236,296.283@237,288.310@238,274.347@239,254.910@240,241.542@241,233.127@242,227.377@243,220.814@244,214.200@245,206.199@246,199.308@247,193.025@248,188.444@249,188.327@250,187.836@251,189.200@252,188.631@253,187.609@254,182.743@255,177.554@256,173.406@257,168.418@258,163.674@259,159.020@260,155.034@261,151.557@262,150.053@263,147.953@264,150.921@265,151.157@266,158.195@267,164.324@268,166.856@269,167.579@270,175.744@271,172.892@272,176.736@273,185.074@274,196.171@275,206.994@276,223.399@277,245.190@278,253.443@279,252.909@280,256.168@281,261.741@282,265.440@283,273.055@284,276.975@285,279.107@286,279.014@287,273.011@288,266.219@289,259.909@290,252.248@291,246.866@292,240.125@293,233.909@294,229.780@295,229.293@296,232.716@297,237.641@298,250.404@299,264.238@300,281.674@301,290.164@302,298.931@303,306.662@304,317.866@305,330.297@306,338.363@307,348.067@308,359.051@309,363.954@310,364.969@311,362.085@312,360.015@313,355.036@314,351.516@315,348.696@316,345.774@317,346.799@318,352.659@319,361.053@320,371.386@321,382.811@322,394.818@323,409.169@324,424.719@325,438.173@326,451.808@327,464.291@328,478.175@329,493.883@330,511.764@331,529.245@332,545.045@333,559.486@334,571.833@335,584.556@336,602.794@337,616.168@338,628.618@339,638.992@340,650.378@341,660.027@342,674.422@343,688.088@344,700.142@345,711.868@346,722.968@347,733.776@348,744.994@349,752.276@350,753.472@351,753.015@352,751.807@353,750.177@354,747.793@355,744.912@356,739.292@357,730.023@358,717.367@359,704.888@360,689.607@361,674.359@362,656.404@363,640.046@364,626.769@365,614.514@366,605.400@367,599.330@368,600.900@369,602.994@370,603.348@371,603.675@372,608.883@373,614.577@374,616.775@375,613.683@376,610.645@377,612.031@378,615.825@379,620.679@380,623.901@381,628.667@382,633.117@383,634.863@384,631.903@385,628.245@386,628.294@387,631.173@388,634.607@389,638.894@390,643.785@391,649.568@392,658.445@393,666.541@394,674.458@395,680.510@396,688.175@397,695.205@398,701.599@399,707.195@400,714.654@401,726.803@402,740.592@403,754.012@404,764.991@405,776.698@406,786.658@407,792.108@408,795.601@409,800.945@410,808.285@411,814.412@412,818.671@413,824.566@414,832.007@415,845.952@416,863.273@417,878.966@418,890.913@419,902.313@420,914.916@421,922.379@422,928.033@423,931.019@424,934.969@425,941.656@426,948.491@427,953.940@428,961.121@429,967.862@430,973.744@431,977.832@432,979.128@433,981.414@434,982.748@435,982.252@436,982.345@437,983.306@438,989.902@439,996.586@440,1003.121@441,1008.532@442,1013.242@443,1016.437@444,1017.312@445,1016.606@446,1014.878@447,1012.993@448,1010.400@449,1008.011@450,1006.257@451,1007.173@452,1006.563@453,1006.226@454,1007.312@455,1011.279@456,1014.453@457,1018.862@458,1024.329@459,1031.848@460,1042.313@461,1056.986@462,1074.458@463,1095.940@464,1123.562@465,1145.612@466,1161.419@467,1171.269@468,1180.047@469,1192.411@470,1203.544@471,1212.739@472,1222.356@473,1232.546@474,1241.983@475,1249.362@476,1255.999@477,1261.763@478,1267.429@479,1271.497@480,1275.283@481,1280.091@482,1285.488@483,1292.569@484,1300.871@485,1310.934@486,1322.892@487,1341.636@488,1360.206@489,1373.833@490,1383.288@491,1393.337@492,1407.043@493,1421.022@494,1433.334@495,1447.162@496,1458.309@497,1467.554@498,1473.358@499,1478.770@500,1482.966@501,1482.699@502,1477.558@503,1469.352@504,1463.122@505,1459.167@506,1462.371@507,1469.369@508,1478.118@509,1487.298@510,1497.190@511,1505.238@512,1513.557@513,1520.305@514,1526.777@515,1531.393@516,1533.040@517,1534.825@518,1538.531@519,1542.271@520,1542.383@521,1539.705@522,1535.812@523,1531.779@524,1521.688@525,1511.160@526,1498.245@527,1490.669@528,1484.379@529,1480.222@530,1479.305@531,1481.827@532,1485.934@533,1488.355@534,1484.997@535,1481.148@536,1482.612@537,1486.206@538,1487.370@539,1485.760@540,1483.801@541,1481.636@542,1481.391@543,1483.296@544,1484.076@545,1486.835@546,1492.412@547,1496.662@548,1498.575@549,1497.401@550,1496.266@551,1494.695@552,1494.766@553,1496.135@554,1498.845@555,1502.920@556,1505.726@557,1503.951@558,1499.820@559,1499.282@560,1502.316@561,1505.642@562,1506.160@563,1508.532@564,1510.566@565,1514.804@566,1517.940@567,1519.929@568,1523.138@569,1528.211@570,1530.063@571,1533.257@572,1535.125@573,1535.335@574,1534.097@575,1534.453@576,1533.216@577,1532.958@578,1534.586@579,1539.194@580,1543.328@581,1542.316@582,1539.979@583,1541.281@584,1541.502@585,1543.282@586,1542.580@587,1539.427@588,1534.768@589,1526.001@590,1514.892@591,1504.137@592,1497.556@593,1491.874@594,1482.065@595,1471.512@596,1461.455@597,1453.819@598,1448.830@599,1445.589@600,1438.262@601,1436.917@602,1436.365@603,1436.338@604,1435.211@605,1430.884@606,1423.965@607,1424.896@608,1427.573@609,1430.761@610,1433.730@611,1437.341@612,1442.443@613,1446.677@614,1449.219@615,1454.567@616,1462.341@617,1471.457@618,1479.154@619,1484.225@620,1488.373@621,1491.471@622,1494.915@623,1497.892@624,1503.640@625,1508.166@626,1506.548@627,1504.122@628,1509.512@629,1506.308@630,1502.192@631,1500.329@632,1499.282@633,1497.529@634,1495.469@635,1492.154@636,1489.659@637,1487.838@638,1486.127@639,1485.559@640,1484.694@641,1484.627@642,1483.658@643,1482.467@644,1481.727@645,1483.508@646,1487.502@647,1494.054@648,1498.457@649,1501.966@650,1506.894@651,1512.427@652,1514.770@653,1517.666@654,1521.520@655,1528.073@656,1532.214@657,1535.288@658,1538.034@659,1541.000@660,1543.582@661,1541.818@662,1539.841@663,1535.989@664,1534.574@665,1532.188@666,1530.318@667,1529.917@668,1530.742@669,1533.496@670,1538.303@671,1542.418@672,1548.170@673,1552.655@674,1555.893@675,1558.558@676,1559.463@677,1561.592@678,1563.461@679,1564.852@680,1564.863@681,1564.634@682,1564.727@683,1563.666@684,1562.924@685,1561.621@686,1559.599@687,1557.933@688,1551.797@689,1543.310@690,1537.436@691,1534.058@692,1531.966@693,1531.802@694,1531.836@695,1529.832@696,1530.019@697,1532.040@698,1534.003@699,1539.140@700,1540.596@701,1540.153@702,1543.337@703,1543.259@704,1540.019@705,1539.952@706,1539.211@707,1536.982@708,1533.288@709,1526.120@710,1519.315@711,1514.049@712,1507.475@713,1496.749@714,1487.385@715,1478.080@716,1471.636@717,1470.590@718,1472.301@719,1473.760@720,1475.619@721,1478.734@722,1482.087@723),
86
+ Linear(0,480.851@1,472.279@2,464.577@3,458.527@4,454.298@5,451.748@6,449.532@7,446.970@8,443.498@9,443.369@10,449.006@11,459.744@12,472.706@13,486.092@14,498.682@15,508.761@16,514.747@17,516.557@18,512.162@19,503.526@20,492.595@21,479.442@22,464.704@23,451.883@24,441.155@25,432.932@26,427.696@27,424.675@28,420.440@29,415.036@30,411.504@31,411.337@32,416.606@33,424.778@34,432.006@35,437.828@36,439.401@37,438.398@38,434.630@39,428.880@40,423.290@41,419.659@42,419.144@43,419.429@44,420.056@45,418.663@46,416.188@47,413.066@48,409.805@49,405.096@50,399.376@51,394.588@52,392.118@53,392.127@54,393.869@55,395.822@56,396.906@57,395.648@58,393.763@59,393.247@60,395.814@61,403.635@62,413.249@63,415.961@64,413.011@65,407.847@66,400.525@67,394.829@68,391.676@69,388.627@70,385.071@71,382.502@72,381.727@73,377.470@74,368.931@75,357.645@76,343.551@77,330.874@78,320.910@79,313.359@80,307.012@81,302.188@82,296.329@83,289.146@84,282.345@85,277.806@86,277.002@87,280.341@88,282.420@89,280.007@90,274.210@91,267.615@92,264.392@93,264.921@94,268.788@95,273.827@96,279.528@97,285.294@98,288.577@99,290.192@100,290.202@101,288.352@102,288.197@103,285.062@104,279.334@105,273.655@106,266.538@107,259.502@108,254.975@109,253.867@110,259.922@111,269.645@112,275.747@113,280.903@114,284.953@115,288.605@116,299.259@117,315.573@118,327.939@119,335.534@120,339.125@121,340.437@122,341.883@123,342.363@124,341.222@125,339.515@126,337.492@127,333.240@128,325.788@129,313.704@130,301.365@131,288.151@132,280.043@133,277.403@134,277.626@135,280.162@136,278.601@137,277.953@138,275.810@139,272.605@140,272.497@141,272.547@142,271.170@143,270.156@144,267.414@145,263.849@146,260.760@147,259.925@148,260.286@149,260.992@150,263.262@151,267.988@152,272.969@153,276.457@154,277.196@155,277.267@156,281.575@157,289.099@158,294.981@159,298.234@160,299.522@161,299.216@162,298.901@163,305.141@164,312.652@165,319.223@166,323.990@167,327.356@168,328.007@169,321.776@170,309.135@171,293.107@172,277.592@173,263.176@174,252.097@175,243.147@176,236.738@177,233.179@178,233.557@179,236.430@180,247.321@181,261.856@182,277.672@183,294.488@184,312.606@185,328.303@186,342.357@187,355.839@188,365.384@189,368.553@190,366.381@191,363.322@192,361.642@193,359.920@194,357.270@195,355.319@196,355.252@197,354.686@198,354.556@199,354.196@200,354.840@201,356.690@202,362.503@203,376.647@204,393.998@205,408.832@206,423.481@207,433.484@208,439.049@209,441.899@210,445.058@211,449.092@212,452.962@213,455.168@214,454.285@215,451.949@216,446.514@217,440.880@218,438.976@219,439.657@220,440.409@221,438.279@222,436.570@223,437.291@224,436.935@225,439.364@226,442.432@227,448.790@228,458.836@229,466.654@230,474.226@231,479.118@232,478.805@233,476.888@234,478.575@235,480.645@236,479.737@237,478.044@238,477.290@239,472.797@240,464.038@241,449.441@242,435.635@243,423.371@244,411.556@245,403.239@246,401.729@247,402.643@248,405.808@249,410.898@250,421.108@251,437.347@252,451.526@253,456.899@254,456.027@255,454.409@256,453.116@257,452.698@258,457.139@259,464.628@260,475.128@261,483.636@262,494.321@263,503.255@264,510.812@265,511.359@266,512.981@267,516.432@268,515.858@269,517.866@270,517.749@271,517.768@272,517.884@273,518.195@274,516.164@275,514.804@276,510.386@277,508.953@278,511.210@279,517.860@280,518.064@281,514.321@282,516.079@283,524.335@284,535.726@285,550.638@286,565.114@287,576.587@288,579.281@289,576.591@290,577.835@291,582.576@292,584.527@293,581.167@294,575.996@295,571.763@296,564.887@297,557.452@298,553.239@299,551.836@300,551.514@301,553.961@302,558.293@303,557.622@304,555.272@305,554.692@306,554.687@307,555.647@308,552.443@309,550.866@310,548.879@311,547.910@312,546.096@313,546.005@314,548.797@315,548.613@316,541.726@317,532.054@318,524.121@319,517.999@320,512.483@321,506.904@322,502.497@323,502.725@324,506.576@325,514.960@326,522.962@327,526.576@328,527.073@329,530.670@330,534.274@331,539.543@332,540.448@333,543.583@334,543.491@335,545.011@336,544.807@337,546.160@338,548.403@339,548.898@340,546.239@341,542.679@342,537.922@343,532.056@344,525.127@345,520.366@346,518.457@347,520.383@348,524.756@349,530.411@350,534.670@351,534.512@352,532.859@353,532.194@354,533.269@355,534.157@356,534.563@357,534.904@358,535.147@359,535.416@360,537.530@361,536.179@362,536.262@363,538.197@364,539.389@365,539.033@366,536.848@367,534.359@368,531.234@369,523.729@370,512.227@371,502.051@372,497.443@373,497.975@374,501.125@375,506.054@376,507.530@377,503.759@378,495.402@379,484.423@380,472.708@381,463.622@382,458.556@383,456.974@384,456.261@385,457.099@386,459.709@387,465.044@388,472.068@389,476.654@390,476.856@391,475.653@392,478.497@393,485.085@394,493.132@395,503.401@396,519.321@397,532.604@398,544.004@399,553.848@400,561.051@401,562.033@402,561.393@403,561.435@404,561.402@405,561.136@406,559.865@407,557.181@408,550.514@409,540.487@410,530.964@411,524.382@412,519.965@413,516.078@414,513.724@415,514.009@416,513.477@417,514.448@418,517.226@419,525.644@420,535.697@421,541.831@422,546.418@423,552.684@424,557.294@425,561.170@426,566.684@427,572.596@428,578.307@429,580.418@430,578.373@431,568.747@432,556.014@433,546.188@434,533.484@435,515.930@436,501.491@437,491.397@438,485.142@439,480.451@440,478.262@441,482.795@442,496.030@443,506.403@444,513.726@445,521.389@446,529.142@447,536.628@448,545.470@449,554.818@450,561.448@451,564.220@452,564.536@453,561.158@454,557.026@455,553.235@456,550.654@457,545.223@458,540.013@459,539.034@460,539.845@461,541.586@462,542.106@463,544.338@464,551.110@465,554.042@466,551.420@467,548.845@468,549.723@469,552.111@470,556.017@471,563.299@472,569.557@473,572.160@474,571.245@475,569.545@476,566.240@477,560.107@478,552.045@479,544.974@480,539.632@481,537.903@482,537.391@483,539.087@484,541.397@485,545.670@486,557.097@487,569.469@488,566.674@489,557.004@490,551.480@491,552.242@492,558.359@493,564.330@494,568.203@495,567.894@496,566.132@497,566.819@498,571.478@499,573.298@500,567.476@501,558.218@502,553.514@503,555.999@504,563.252@505,567.696@506,566.122@507,561.355@508,560.285@509,564.827@510,567.248@511,564.353@512,558.529@513,551.986@514,548.130@515,548.488@516,549.530@517,546.309@518,538.535@519,529.239@520,521.832@521,521.383@522,521.893@523,515.333@524,505.770@525,502.901@526,508.944@527,522.184@528,533.333@529,537.189@530,535.555@531,539.258@532,547.793@533,548.733@534,538.430@535,531.597@536,532.784@537,537.464@538,539.659@539,537.193@540,532.238@541,525.647@542,517.922@543,511.424@544,506.658@545,502.457@546,496.574@547,490.400@548,488.548@549,490.069@550,490.708@551,488.525@552,483.917@553,480.903@554,481.943@555,491.038@556,495.164@557,489.145@558,485.507@559,487.857@560,492.171@561,497.093@562,496.751@563,494.185@564,490.389@565,488.794@566,488.388@567,484.568@568,473.505@569,459.134@570,445.810@571,436.394@572,429.778@573,423.858@574,415.685@575,406.153@576,396.353@577,390.212@578,390.379@579,398.224@580,399.852@581,392.381@582,387.832@583,391.195@584,398.781@585,406.160@586,407.708@587,405.755@588,405.015@589,404.535@590,403.050@591,402.166@592,402.915@593,405.153@594,405.680@595,403.965@596,402.507@597,399.751@598,396.666@599,393.392@600,391.438@601,388.964@602,391.527@603,397.086@604,398.766@605,398.605@606,400.870@607,405.503@608,413.205@609,419.917@610,421.653@611,419.424@612,416.296@613,412.893@614,407.606@615,400.837@616,392.519@617,382.679@618,367.369@619,353.595@620,345.965@621,338.233@622,328.382@623,319.619@624,314.580@625,315.530@626,325.940@627,337.984@628,342.226@629,345.971@630,355.121@631,371.227@632,389.652@633,404.019@634,408.949@635,409.235@636,409.942@637,412.368@638,416.613@639,419.709@640,421.887@641,421.872@642,421.395@643,419.816@644,416.417@645,410.902@646,404.351@647,398.630@648,392.846@649,390.096@650,388.429@651,386.572@652,385.855@653,383.976@654,382.852@655,383.855@656,385.552@657,384.547@658,383.332@659,383.127@660,382.607@661,379.575@662,374.894@663,371.868@664,369.375@665,368.959@666,369.253@667,371.649@668,376.808@669,383.039@670,388.264@671,394.340@672,401.682@673,405.263@674,405.812@675,410.446@676,416.496@677,425.288@678,437.500@679,448.885@680,455.751@681,456.773@682,452.935@683,445.414@684,438.521@685,432.448@686,426.898@687,420.824@688,411.123@689,401.170@690,398.002@691,398.789@692,397.629@693,389.956@694,379.959@695,372.809@696,373.167@697,375.567@698,376.490@699,375.423@700,373.581@701,372.777@702,376.310@703,381.843@704,384.610@705,383.657@706,381.790@707,384.082@708,392.567@709,403.700@710,412.897@711,423.379@712,434.809@713,441.615@714,443.944@715,444.684@716,441.160@717,436.838@718,435.297@719,436.931@720,441.605@721,453.032@722,464.662@723),
87
+ Linear(0,1270.384@1,1265.018@2,1259.210@3,1251.393@4,1243.258@5,1237.050@6,1233.921@7,1235.429@8,1240.590@9,1246.263@10,1250.597@11,1253.715@12,1256.037@13,1258.192@14,1263.054@15,1267.420@16,1272.722@17,1281.336@18,1291.790@19,1300.353@20,1307.048@21,1311.046@22,1311.789@23,1310.089@24,1307.155@25,1303.866@26,1298.408@27,1291.848@28,1283.574@29,1273.594@30,1261.874@31,1251.134@32,1240.855@33,1231.168@34,1223.346@35,1215.011@36,1206.447@37,1197.144@38,1189.678@39,1183.680@40,1177.212@41,1170.203@42,1161.957@43,1151.804@44,1142.057@45,1132.477@46,1123.275@47,1118.503@48,1112.404@49,1105.398@50,1095.659@51,1083.950@52,1072.132@53,1061.011@54,1051.380@55,1042.918@56,1034.932@57,1027.102@58,1020.540@59,1015.609@60,1012.103@61,1010.682@62,1010.153@63,1009.103@64,1005.949@65,1005.303@66,1003.911@67,1003.196@68,1006.535@69,1005.368@70,1003.068@71,997.065@72,991.365@73,991.970@74,989.753@75,985.897@76,984.704@77,982.039@78,979.873@79,975.034@80,967.331@81,961.102@82,952.825@83,942.511@84,929.587@85,919.589@86,914.161@87,915.142@88,915.479@89,910.643@90,904.245@91,900.706@92,899.635@93,898.883@94,897.438@95,894.998@96,890.813@97,886.380@98,881.431@99,878.073@100,875.779@101,875.727@102,874.737@103,875.422@104,873.740@105,874.601@106,871.515@107,870.001@108,872.714@109,875.026@110,880.580@111,885.265@112,885.627@113,884.873@114,887.652@115,889.177@116,893.414@117,897.473@118,895.291@119,893.600@120,889.793@121,885.663@122,881.694@123,871.472@124,871.515@125,872.425@126,873.653@127,873.535@128,873.680@129,872.228@130,872.850@131,868.703@132,872.495@133,871.605@134,871.139@135,874.024@136,868.901@137,865.924@138,866.015@139,868.505@140,866.083@141,861.642@142,853.000@143,840.100@144,831.035@145,817.987@146,805.370@147,794.860@148,786.167@149,779.556@150,776.245@151,772.067@152,767.290@153,760.981@154,754.144@155,740.371@156,738.797@157,736.492@158,732.471@159,729.017@160,723.478@161,721.078@162,722.714@163,730.493@164,734.852@165,740.374@166,746.028@167,748.590@168,749.439@169,749.378@170,744.662@171,744.447@172,738.066@173,727.039@174,714.391@175,701.885@176,690.334@177,681.911@178,673.075@179,667.813@180,663.179@181,663.926@182,660.895@183,656.991@184,647.964@185,634.857@186,622.241@187,610.018@188,595.988@189,584.033@190,572.617@191,561.645@192,549.520@193,537.376@194,530.325@195,524.475@196,520.762@197,517.653@198,513.254@199,510.852@200,509.426@201,505.445@202,500.921@203,496.967@204,493.832@205,491.852@206,486.842@207,483.244@208,478.337@209,474.603@210,472.572@211,471.440@212,469.078@213,465.570@214,461.447@215,452.830@216,444.488@217,436.141@218,429.443@219,419.540@220,407.613@221,395.482@222,383.362@223,373.219@224,365.985@225,358.449@226,351.731@227,344.956@228,339.706@229,335.227@230,330.376@231,324.758@232,320.047@233,318.289@234,312.003@235,307.477@236,301.075@237,293.532@238,280.046@239,261.120@240,248.235@241,240.311@242,234.996@243,228.891@244,222.688@245,215.138@246,208.660@247,202.807@248,198.655@249,198.945@250,198.870@251,200.638@252,200.541@253,199.886@254,195.374@255,190.530@256,186.711@257,182.067@258,177.680@259,173.420@260,169.807@261,166.745@262,165.630@263,163.886@264,167.088@265,167.997@266,175.328@267,181.659@268,184.447@269,185.444@270,193.694@271,191.082@272,195.351@273,204.050@274,215.294@275,226.309@276,242.847@277,264.571@278,272.935@279,273.023@280,276.527@281,282.187@282,286.113@283,293.890@284,298.056@285,300.449@286,300.610@287,294.953@288,288.439@289,282.358@290,274.939@291,269.800@292,263.226@293,257.181@294,253.236@295,252.929@296,256.552@297,261.579@298,274.354@299,288.221@300,305.834@301,314.324@302,323.301@303,331.185@304,342.582@305,355.005@306,363.024@307,372.766@308,383.649@309,388.691@310,389.913@311,387.173@312,385.262@313,380.522@314,377.141@315,374.438@316,371.633@317,372.653@318,378.444@319,386.834@320,397.298@321,408.731@322,420.731@323,435.166@324,450.697@325,464.210@326,477.827@327,490.259@328,504.011@329,519.664@330,537.524@331,555.037@332,570.879@333,585.493@334,597.786@335,610.524@336,628.718@337,642.153@338,654.602@339,665.032@340,676.410@341,686.119@342,700.442@343,714.115@344,726.179@345,737.899@346,749.030@347,759.819@348,771.032@349,778.394@350,779.660@351,779.208@352,778.061@353,776.475@354,774.152@355,771.311@356,765.780@357,756.597@358,744.021@359,731.599@360,716.464@361,701.346@362,683.547@363,667.333@364,654.131@365,641.992@366,632.972@367,627.004@368,628.644@369,630.788@370,631.183@371,631.558@372,636.838@373,642.570@374,644.819@375,641.803@376,638.849@377,640.273@378,644.099@379,649.015@380,652.317@381,657.158@382,661.674@383,663.489@384,660.592@385,657.040@386,657.167@387,660.004@388,663.498@389,667.853@390,672.761@391,678.532@392,687.455@393,695.732@394,703.641@395,709.695@396,717.403@397,724.436@398,730.838@399,736.459@400,743.963@401,756.114@402,769.873@403,783.302@404,794.300@405,806.020@406,816.000@407,821.476@408,824.986@409,830.346@410,837.683@411,843.809@412,848.074@413,853.962@414,861.369@415,875.297@416,892.585@417,908.259@418,920.172@419,931.560@420,944.157@421,951.624@422,957.208@423,960.195@424,964.122@425,970.771@426,977.598@427,983.028@428,990.187@429,996.909@430,1002.762@431,1006.792@432,1008.053@433,1010.291@434,1011.607@435,1011.058@436,1011.063@437,1011.991@438,1018.536@439,1025.168@440,1031.663@441,1037.002@442,1041.657@443,1044.788@444,1045.581@445,1044.856@446,1043.060@447,1041.122@448,1038.506@449,1036.043@450,1034.229@451,1035.109@452,1034.467@453,1034.057@454,1035.086@455,1039.008@456,1042.156@457,1046.517@458,1051.906@459,1059.370@460,1069.807@461,1084.469@462,1101.911@463,1123.397@464,1150.972@465,1172.995@466,1188.771@467,1198.648@468,1207.385@469,1219.736@470,1230.848@471,1240.014@472,1249.564@473,1259.740@474,1269.148@475,1276.481@476,1283.067@477,1288.785@478,1294.435@479,1298.464@480,1302.165@481,1306.973@482,1312.330@483,1319.388@484,1327.672@485,1337.719@486,1349.666@487,1368.421@488,1386.976@489,1400.548@490,1409.949@491,1420.008@492,1433.740@493,1447.738@494,1460.050@495,1473.873@496,1485.053@497,1494.213@498,1499.990@499,1505.355@500,1509.441@501,1509.032@502,1503.754@503,1495.447@504,1489.124@505,1485.053@506,1488.187@507,1495.125@508,1503.794@509,1512.897@510,1522.730@511,1530.687@512,1538.905@513,1545.548@514,1551.948@515,1556.521@516,1558.082@517,1559.728@518,1563.335@519,1566.934@520,1566.894@521,1564.065@522,1560.004@523,1555.809@524,1545.416@525,1534.691@526,1521.516@527,1513.810@528,1507.337@529,1502.981@530,1501.871@531,1504.260@532,1508.274@533,1510.547@534,1506.971@535,1502.931@536,1504.286@537,1507.804@538,1508.809@539,1506.996@540,1504.835@541,1502.498@542,1502.036@543,1503.727@544,1504.335@545,1506.914@546,1512.354@547,1516.468@548,1518.240@549,1516.902@550,1515.605@551,1513.794@552,1513.615@553,1514.746@554,1517.273@555,1521.156@556,1523.779@557,1521.732@558,1517.382@559,1516.663@560,1519.560@561,1522.735@562,1523.025@563,1525.220@564,1526.998@565,1531.045@566,1534.017@567,1535.814@568,1538.784@569,1543.663@570,1545.242@571,1548.230@572,1549.941@573,1549.977@574,1548.458@575,1548.548@576,1547.026@577,1546.468@578,1547.806@579,1552.178@580,1556.016@581,1554.588@582,1551.920@583,1553.051@584,1553.051@585,1554.612@586,1553.627@587,1550.160@588,1545.181@589,1536.076@590,1524.624@591,1513.532@592,1506.645@593,1500.658@594,1490.513@595,1479.624@596,1469.212@597,1461.258@598,1455.924@599,1452.339@600,1444.521@601,1442.841@602,1441.983@603,1441.609@604,1440.106@605,1435.359@606,1427.939@607,1428.559@608,1430.954@609,1433.838@610,1436.455@611,1439.715@612,1444.428@613,1448.274@614,1450.406@615,1455.362@616,1462.765@617,1471.543@618,1478.787@619,1483.445@620,1487.267@621,1489.991@622,1493.044@623,1495.613@624,1500.919@625,1505.035@626,1502.957@627,1500.101@628,1505.025@629,1501.343@630,1496.804@631,1494.597@632,1493.268@633,1491.187@634,1488.730@635,1484.998@636,1482.047@637,1479.836@638,1477.710@639,1476.703@640,1475.419@641,1474.948@642,1473.569@643,1471.988@644,1470.838@645,1472.259@646,1475.899@647,1482.086@648,1486.095@649,1489.197@650,1493.712@651,1498.850@652,1500.792@653,1503.327@654,1506.798@655,1512.990@656,1516.752@657,1519.423@658,1521.792@659,1524.405@660,1526.589@661,1524.410@662,1522.050@663,1517.863@664,1516.088@665,1513.314@666,1511.090@667,1510.360@668,1510.860@669,1513.268@670,1517.726@671,1521.507@672,1526.859@673,1530.931@674,1533.807@675,1536.135@676,1536.749@677,1538.556@678,1540.189@679,1541.257@680,1540.938@681,1540.376@682,1540.131@683,1538.784@684,1537.684@685,1536.047@686,1533.762@687,1531.756@688,1525.271@689,1516.446@690,1510.304@691,1506.698@692,1504.356@693,1503.891@694,1503.521@695,1501.238@696,1501.160@697,1502.907@698,1504.553@699,1509.307@700,1510.461@701,1509.803@702,1512.680@703,1512.417@704,1509.012@705,1508.563@706,1507.565@707,1505.130@708,1501.108@709,1493.775@710,1486.726@711,1481.300@712,1474.562@713,1463.707@714,1454.084@715,1444.620@716,1438.046@717,1436.815@718,1438.358@719,1439.573@720,1441.236@721,1444.136@722,1447.281@723),
88
+ Linear(0,476.897@1,468.504@2,461.051@3,455.243@4,451.174@5,448.587@6,446.299@7,443.662@8,440.213@9,440.052@10,445.554@11,456.156@12,469.066@13,482.426@14,494.997@15,505.060@16,511.067@17,512.923@18,508.617@19,500.131@20,489.264@21,476.104@22,461.382@23,448.621@24,438.050@25,429.912@26,424.614@27,421.494@28,417.270@29,412.029@30,408.675@31,408.542@32,413.937@33,422.259@34,429.647@35,435.662@36,437.353@37,436.394@38,432.563@39,426.771@40,421.052@41,417.139@42,416.406@43,416.580@44,417.306@45,416.150@46,413.925@47,410.959@48,407.768@49,403.222@50,397.784@51,393.268@52,391.078@53,391.224@54,392.884@55,394.655@56,395.687@57,394.621@58,393.101@59,392.975@60,395.799@61,403.544@62,413.144@63,416.213@64,413.695@65,408.892@66,401.647@67,395.869@68,392.841@69,390.275@70,387.254@71,384.868@72,384.008@73,379.931@74,371.455@75,360.323@76,346.484@77,333.904@78,324.079@79,316.431@80,309.945@81,305.190@82,299.456@83,292.523@84,286.047@85,281.932@86,281.461@87,285.158@88,287.918@89,286.285@90,280.858@91,274.182@92,270.746@93,270.977@94,274.745@95,280.101@96,286.277@97,292.295@98,295.824@99,297.216@100,296.971@101,294.974@102,294.355@103,291.004@104,285.000@105,279.140@106,271.779@107,264.691@108,260.153@109,258.931@110,264.812@111,274.712@112,280.994@113,286.438@114,290.706@115,294.231@116,304.403@117,320.451@118,332.867@119,340.857@120,344.749@121,345.952@122,347.235@123,347.455@124,346.367@125,344.778@126,342.799@127,338.430@128,330.815@129,318.508@130,306.342@131,293.344@132,285.298@133,282.629@134,282.893@135,285.522@136,284.229@137,283.755@138,281.501@139,278.031@140,277.846@141,277.915@142,276.759@143,275.960@144,273.264@145,269.605@146,266.451@147,265.817@148,266.403@149,267.116@150,269.149@151,273.648@152,278.625@153,282.261@154,283.106@155,283.125@156,287.346@157,294.866@158,300.888@159,304.245@160,305.606@161,305.228@162,304.725@163,310.816@164,318.305@165,324.892@166,329.670@167,333.093@168,333.857@169,327.690@170,314.901@171,298.678@172,283.095@173,268.653@174,257.526@175,248.479@176,241.984@177,238.488@178,239.036@179,241.965@180,252.861@181,267.433@182,283.293@183,300.079@184,318.211@185,333.859@186,347.787@187,361.141@188,370.612@189,373.728@190,371.499@191,368.384@192,366.696@193,365.010@194,362.388@195,360.444@196,360.349@197,359.767@198,359.594@199,359.231@200,359.930@201,361.842@202,367.691@203,381.912@204,399.393@205,414.315@206,429.024@207,439.068@208,444.641@209,447.463@210,450.607@211,454.671@212,458.591@213,460.840@214,460.025@215,457.734@216,452.331@217,446.723@218,444.863@219,445.575@220,446.371@221,444.263@222,442.577@223,443.308@224,442.974@225,445.393@226,448.480@227,454.860@228,464.896@229,472.748@230,480.312@231,485.215@232,484.911@233,483.034@234,484.709@235,486.776@236,485.899@237,484.237@238,483.489@239,479.033@240,470.291@241,455.733@242,441.942@243,429.740@244,417.970@245,409.707@246,408.176@247,409.078@248,412.219@249,417.267@250,427.418@251,443.494@252,457.501@253,462.827@254,462.020@255,460.473@256,459.236@257,458.833@258,463.251@259,470.675@260,481.094@261,489.514@262,500.056@263,508.827@264,516.218@265,516.743@266,518.271@267,521.615@268,521.034@269,523.021@270,522.922@271,522.941@272,523.047@273,523.296@274,521.258@275,519.915@276,515.584@277,514.142@278,516.298@279,522.749@280,522.885@281,519.208@282,520.962@283,529.112@284,540.408@285,555.206@286,569.517@287,580.793@288,583.482@289,580.964@290,582.264@291,586.929@292,588.863@293,585.649@294,580.639@295,576.428@296,569.571@297,562.202@298,558.006@299,556.519@300,556.065@301,558.322@302,562.452@303,561.743@304,559.420@305,558.850@306,558.859@307,559.768@308,556.515@309,554.789@310,552.657@311,551.484@312,549.503@313,549.261@314,551.827@315,551.495@316,544.737@317,535.295@318,527.511@319,521.405@320,515.865@321,510.356@322,506.104@323,506.359@324,510.086@325,518.208@326,525.988@327,529.559@328,530.211@329,533.810@330,537.331@331,542.348@332,543.123@333,546.045@334,545.846@335,547.159@336,546.741@337,547.858@338,549.855@339,550.232@340,547.729@341,544.414@342,539.794@343,533.843@344,526.854@345,522.153@346,520.400@347,522.430@348,526.781@349,532.180@350,536.195@351,536.002@352,534.559@353,534.110@354,535.233@355,535.996@356,536.253@357,536.455@358,536.592@359,536.766@360,538.751@361,537.359@362,537.346@363,539.089@364,540.177@365,539.958@366,538.024@367,535.749@368,532.678@369,525.220@370,513.817@371,503.816@372,499.229@373,499.608@374,502.592@375,507.474@376,508.999@377,505.385@378,497.264@379,486.421@380,474.749@381,465.593@382,460.415@383,458.706@384,457.907@385,458.645@386,461.196@387,466.434@388,473.350@389,477.884@390,478.254@391,477.278@392,480.206@393,486.623@394,494.505@395,504.769@396,520.766@397,534.005@398,545.358@399,555.036@400,562.060@401,562.966@402,562.359@403,562.426@404,562.328@405,561.878@406,560.327@407,557.333@408,550.503@409,540.539@410,531.186@411,524.604@412,519.965@413,515.854@414,513.512@415,513.918@416,513.449@417,514.302@418,516.909@419,525.266@420,535.101@421,540.976@422,545.530@423,551.910@424,556.677@425,560.639@426,566.215@427,572.107@428,577.683@429,579.533@430,577.286@431,567.729@432,555.471@433,545.985@434,533.116@435,515.120@436,500.454@437,490.503@438,484.514@439,479.907@440,477.653@441,482.205@442,495.383@443,505.534@444,512.681@445,520.315@446,528.198@447,535.887@448,544.899@449,554.276@450,560.765@451,563.318@452,563.503@453,560.158@454,556.180@455,552.484@456,549.791@457,544.018@458,538.682@459,537.842@460,538.872@461,540.689@462,541.099@463,543.185@464,549.711@465,552.371@466,549.451@467,546.774@468,547.674@469,550.028@470,553.899@471,561.211@472,567.349@473,569.714@474,568.504@475,566.666@476,563.236@477,556.955@478,548.755@479,541.693@480,536.481@481,534.886@482,534.454@483,536.212@484,538.518@485,542.802@486,554.393@487,566.803@488,563.670@489,553.609@490,548.025@491,548.972@492,555.439@493,561.684@494,565.584@495,565.109@496,563.158@497,563.819@498,568.660@499,570.470@500,564.350@501,554.721@502,549.937@503,552.733@504,560.469@505,565.195@506,563.595@507,558.687@508,557.666@509,562.366@510,564.770@511,561.763@512,555.773@513,549.109@514,545.252@515,545.740@516,546.895@517,543.595@518,535.537@519,525.909@520,518.288@521,517.850@522,518.283@523,511.351@524,501.350@525,498.301@526,504.421@527,517.852@528,529.093@529,532.825@530,530.993@531,534.737@532,543.448@533,544.484@534,534.116@535,527.313@536,528.673@537,533.577@538,535.854@539,533.291@540,528.158@541,521.411@542,513.486@543,506.830@544,502.010@545,497.726@546,491.756@547,485.548@548,483.810@549,485.455@550,486.098@551,483.740@552,478.858@553,475.641@554,476.575@555,485.694@556,489.750@557,483.497@558,479.709@559,482.094@560,486.523@561,491.507@562,491.096@563,488.397@564,484.460@565,482.817@566,482.478@567,478.665@568,467.453@569,452.905@570,439.513@571,430.135@572,423.598@573,417.688@574,409.438@575,399.788@576,389.850@577,383.576@578,383.708@579,391.572@580,393.060@581,385.389@582,380.735@583,384.196@584,391.975@585,399.506@586,401.050@587,399.057@588,398.292@589,397.804@590,396.282@591,395.381@592,396.132@593,398.398@594,398.958@595,397.241@596,395.804@597,393.056@598,389.986@599,386.734@600,384.811@601,382.314@602,384.889@603,390.447@604,392.091@605,391.888@606,394.175@607,398.838@608,406.595@609,413.355@610,415.077@611,412.838@612,409.711@613,406.310@614,401.014@615,394.231@616,385.908@617,376.067@618,360.760@619,346.978@620,339.337@621,331.615@622,321.774@623,313.034@624,308.034@625,309.008@626,319.470@627,331.586@628,335.907@629,339.770@630,349.007@631,365.130@632,383.514@633,397.869@634,402.871@635,403.245@636,404.040@637,406.518@638,410.812@639,413.975@640,416.173@641,416.172@642,415.708@643,414.175@644,410.781@645,405.238@646,398.648@647,392.842@648,387.031@649,384.289@650,382.685@651,380.832@652,380.101@653,378.215@654,377.087@655,378.051@656,379.690@657,378.677@658,377.496@659,377.315@660,376.812@661,373.877@662,369.292@663,366.322@664,363.882@665,363.535@666,363.917@667,366.313@668,371.439@669,377.643@670,382.865@671,388.951@672,396.342@673,400.085@674,400.792@675,405.474@676,411.543@677,420.285@678,432.364@679,443.688@680,450.527@681,451.579@682,447.843@683,440.385@684,433.545@685,427.471@686,421.920@687,415.961@688,406.600@689,396.924@690,393.735@691,394.283@692,393.002@693,385.452@694,375.686@695,368.710@696,369.035@697,371.402@698,372.392@699,371.519@700,369.912@701,369.273@702,372.647@703,377.908@704,380.578@705,379.766@706,378.135@707,380.534@708,388.930@709,399.988@710,409.209@711,419.635@712,430.995@713,437.774@714,440.152@715,440.860@716,437.365@717,432.982@718,431.454@719,433.096@720,437.785@721,449.262@722,461.059@723),
89
+ "default",
90
+ xFilter,
91
+ "trsx",
92
+ 0,
93
+ 0.5,
94
+ 0,
95
+ 1,
96
+ 1,
97
+ 1-723,
98
+ "1/16",
99
+ "luminance",
100
+ 0.75,
101
+ "use start frame",
102
+ 0.5,
103
+ "stop",
104
+ 1,
105
+ "Auto0014", 1287.83-height/25, 1287.83+height/25, 959.808-height/25, 959.808+height/25, 1287.83-height/15, 1287.83+height/15, 959.808-height/15, 959.808+height/15,
106
+ "Auto0013", 1365.64-height/25, 1365.64+height/25, 974.464-height/25, 974.464+height/25, 1365.64-height/15, 1365.64+height/15, 974.464-height/15, 974.464+height/15,
107
+ "Auto6862", 1302.24-height/25, 1302.24+height/25, 480.851-height/25, 480.851+height/25, 1302.24-height/15, 1302.24+height/15, 480.851-height/15, 480.851+height/15,
108
+ "Auto0098", 1270.38-height/25, 1270.38+height/25, 476.897-height/25, 476.897+height/25, 1270.38-height/15, 1270.38+height/15, 476.897-height/15, 476.897+height/15);
109
+
110
+ rzOver = Over(
111
+ rzStabilize,
112
+ rzVideo,
113
+ 1,
114
+ 0,
115
+ 0
116
+ );
117
+
118
+
119
+ curve float focal = Linear(0,2257.552@1,2257.552@2,2257.552@3,2257.552@4,2257.552@5,2257.552@6,2257.552@7,2257.552@8,2257.552@9,2257.552@10,2257.552@11,2257.552@12,2257.552@13,2257.552@14,2257.552@15,2257.552@16,2257.552@17,2257.552@18,2257.552@19,2257.552@20,2257.552@21,2257.552@22,2257.552@23,2257.552@24,2257.552@25,2257.552@26,2257.552@27,2257.552@28,2257.552@29,2257.552@30,2257.552@31,2257.552@32,2257.552@33,2257.552@34,2257.552@35,2257.552@36,2257.552@37,2257.552@38,2257.552@39,2257.552@40,2257.552@41,2257.552@42,2257.552@43,2257.552@44,2257.552@45,2257.552@46,2257.552@47,2257.552@48,2257.552@49,2257.552@50,2257.552@51,2257.552@52,2257.552@53,2257.552@54,2257.552@55,2257.552@56,2257.552@57,2257.552@58,2257.552@59,2257.552@60,2257.552@61,2257.552@62,2257.552@63,2257.552@64,2257.552@65,2257.552@66,2257.552@67,2257.552@68,2257.552@69,2257.552@70,2257.552@71,2257.552@72,2257.552@73,2257.552@74,2257.552@75,2257.552@76,2257.552@77,2257.552@78,2257.552@79,2257.552@80,2257.552@81,2257.552@82,2257.552@83,2257.552@84,2257.552@85,2257.552@86,2257.552@87,2257.552@88,2257.552@89,2257.552@90,2257.552@91,2257.552@92,2257.552@93,2257.552@94,2257.552@95,2257.552@96,2257.552@97,2257.552@98,2257.552@99,2257.552@100,2257.552@101,2257.552@102,2257.552@103,2257.552@104,2257.552@105,2257.552@106,2257.552@107,2257.552@108,2257.552@109,2257.552@110,2257.552@111,2257.552@112,2257.552@113,2257.552@114,2257.552@115,2257.552@116,2257.552@117,2257.552@118,2257.552@119,2257.552@120,2257.552@121,2257.552@122,2257.552@123,2257.552@124,2257.552@125,2257.552@126,2257.552@127,2257.552@128,2257.552@129,2257.552@130,2257.552@131,2257.552@132,2257.552@133,2257.552@134,2257.552@135,2257.552@136,2257.552@137,2257.552@138,2257.552@139,2257.552@140,2257.552@141,2257.552@142,2257.552@143,2257.552@144,2257.552@145,2257.552@146,2257.552@147,2257.552@148,2257.552@149,2257.552@150,2257.552@151,2257.552@152,2257.552@153,2257.552@154,2257.552@155,2257.552@156,2257.552@157,2257.552@158,2257.552@159,2257.552@160,2257.552@161,2257.552@162,2257.552@163,2257.552@164,2257.552@165,2257.552@166,2257.552@167,2257.552@168,2257.552@169,2257.552@170,2257.552@171,2257.552@172,2257.552@173,2257.552@174,2257.552@175,2257.552@176,2257.552@177,2257.552@178,2257.552@179,2257.552@180,2257.552@181,2257.552@182,2257.552@183,2257.552@184,2257.552@185,2257.552@186,2257.552@187,2257.552@188,2257.552@189,2257.552@190,2257.552@191,2257.552@192,2257.552@193,2257.552@194,2257.552@195,2257.552@196,2257.552@197,2257.552@198,2257.552@199,2257.552@200,2257.552@201,2257.552@202,2257.552@203,2257.552@204,2257.552@205,2257.552@206,2257.552@207,2257.552@208,2257.552@209,2257.552@210,2257.552@211,2257.552@212,2257.552@213,2257.552@214,2257.552@215,2257.552@216,2257.552@217,2257.552@218,2257.552@219,2257.552@220,2257.552@221,2257.552@222,2257.552@223,2257.552@224,2257.552@225,2257.552@226,2257.552@227,2257.552@228,2257.552@229,2257.552@230,2257.552@231,2257.552@232,2257.552@233,2257.552@234,2257.552@235,2257.552@236,2257.552@237,2257.552@238,2257.552@239,2257.552@240,2257.552@241,2257.552@242,2257.552@243,2257.552@244,2257.552@245,2257.552@246,2257.552@247,2257.552@248,2257.552@249,2257.552@250,2257.552@251,2257.552@252,2257.552@253,2257.552@254,2257.552@255,2257.552@256,2257.552@257,2257.552@258,2257.552@259,2257.552@260,2257.552@261,2257.552@262,2257.552@263,2257.552@264,2257.552@265,2257.552@266,2257.552@267,2257.552@268,2257.552@269,2257.552@270,2257.552@271,2257.552@272,2257.552@273,2257.552@274,2257.552@275,2257.552@276,2257.552@277,2257.552@278,2257.552@279,2257.552@280,2257.552@281,2257.552@282,2257.552@283,2257.552@284,2257.552@285,2257.552@286,2257.552@287,2257.552@288,2257.552@289,2257.552@290,2257.552@291,2257.552@292,2257.552@293,2257.552@294,2257.552@295,2257.552@296,2257.552@297,2257.552@298,2257.552@299,2257.552@300,2257.552@301,2257.552@302,2257.552@303,2257.552@304,2257.552@305,2257.552@306,2257.552@307,2257.552@308,2257.552@309,2257.552@310,2257.552@311,2257.552@312,2257.552@313,2257.552@314,2257.552@315,2257.552@316,2257.552@317,2257.552@318,2257.552@319,2257.552@320,2257.552@321,2257.552@322,2257.552@323,2257.552@324,2257.552@325,2257.552@326,2257.552@327,2257.552@328,2257.552@329,2257.552@330,2257.552@331,2257.552@332,2257.552@333,2257.552@334,2257.552@335,2257.552@336,2257.552@337,2257.552@338,2257.552@339,2257.552@340,2257.552@341,2257.552@342,2257.552@343,2257.552@344,2257.552@345,2257.552@346,2257.552@347,2257.552@348,2257.552@349,2257.552@350,2257.552@351,2257.552@352,2257.552@353,2257.552@354,2257.552@355,2257.552@356,2257.552@357,2257.552@358,2257.552@359,2257.552@360,2257.552@361,2257.552@362,2257.552@363,2257.552@364,2257.552@365,2257.552@366,2257.552@367,2257.552@368,2257.552@369,2257.552@370,2257.552@371,2257.552@372,2257.552@373,2257.552@374,2257.552@375,2257.552@376,2257.552@377,2257.552@378,2257.552@379,2257.552@380,2257.552@381,2257.552@382,2257.552@383,2257.552@384,2257.552@385,2257.552@386,2257.552@387,2257.552@388,2257.552@389,2257.552@390,2257.552@391,2257.552@392,2257.552@393,2257.552@394,2257.552@395,2257.552@396,2257.552@397,2257.552@398,2257.552@399,2257.552@400,2257.552@401,2257.552@402,2257.552@403,2257.552@404,2257.552@405,2257.552@406,2257.552@407,2257.552@408,2257.552@409,2257.552@410,2257.552@411,2257.552@412,2257.552@413,2257.552@414,2257.552@415,2257.552@416,2257.552@417,2257.552@418,2257.552@419,2257.552@420,2257.552@421,2257.552@422,2257.552@423,2257.552@424,2257.552@425,2257.552@426,2257.552@427,2257.552@428,2257.552@429,2257.552@430,2257.552@431,2257.552@432,2257.552@433,2257.552@434,2257.552@435,2257.552@436,2257.552@437,2257.552@438,2257.552@439,2257.552@440,2257.552@441,2257.552@442,2257.552@443,2257.552@444,2257.552@445,2257.552@446,2257.552@447,2257.552@448,2257.552@449,2257.552@450,2257.552@451,2257.552@452,2257.552@453,2257.552@454,2257.552@455,2257.552@456,2257.552@457,2257.552@458,2257.552@459,2257.552@460,2257.552@461,2257.552@462,2257.552@463,2257.552@464,2257.552@465,2257.552@466,2257.552@467,2257.552@468,2257.552@469,2257.552@470,2257.552@471,2257.552@472,2257.552@473,2257.552@474,2257.552@475,2257.552@476,2257.552@477,2257.552@478,2257.552@479,2257.552@480,2257.552@481,2257.552@482,2257.552@483,2257.552@484,2257.552@485,2257.552@486,2257.552@487,2257.552@488,2257.552@489,2257.552@490,2257.552@491,2257.552@492,2257.552@493,2257.552@494,2257.552@495,2257.552@496,2257.552@497,2257.552@498,2257.552@499,2257.552@500,2257.552@501,2257.552@502,2257.552@503,2257.552@504,2257.552@505,2257.552@506,2257.552@507,2257.552@508,2257.552@509,2257.552@510,2257.552@511,2257.552@512,2257.552@513,2257.552@514,2257.552@515,2257.552@516,2257.552@517,2257.552@518,2257.552@519,2257.552@520,2257.552@521,2257.552@522,2257.552@523,2257.552@524,2257.552@525,2257.552@526,2257.552@527,2257.552@528,2257.552@529,2257.552@530,2257.552@531,2257.552@532,2257.552@533,2257.552@534,2257.552@535,2257.552@536,2257.552@537,2257.552@538,2257.552@539,2257.552@540,2257.552@541,2257.552@542,2257.552@543,2257.552@544,2257.552@545,2257.552@546,2257.552@547,2257.552@548,2257.552@549,2257.552@550,2257.552@551,2257.552@552,2257.552@553,2257.552@554,2257.552@555,2257.552@556,2257.552@557,2257.552@558,2257.552@559,2257.552@560,2257.552@561,2257.552@562,2257.552@563,2257.552@564,2257.552@565,2257.552@566,2257.552@567,2257.552@568,2257.552@569,2257.552@570,2257.552@571,2257.552@572,2257.552@573,2257.552@574,2257.552@575,2257.552@576,2257.552@577,2257.552@578,2257.552@579,2257.552@580,2257.552@581,2257.552@582,2257.552@583,2257.552@584,2257.552@585,2257.552@586,2257.552@587,2257.552@588,2257.552@589,2257.552@590,2257.552@591,2257.552@592,2257.552@593,2257.552@594,2257.552@595,2257.552@596,2257.552@597,2257.552@598,2257.552@599,2257.552@600,2257.552@601,2257.552@602,2257.552@603,2257.552@604,2257.552@605,2257.552@606,2257.552@607,2257.552@608,2257.552@609,2257.552@610,2257.552@611,2257.552@612,2257.552@613,2257.552@614,2257.552@615,2257.552@616,2257.552@617,2257.552@618,2257.552@619,2257.552@620,2257.552@621,2257.552@622,2257.552@623,2257.552@624,2257.552@625,2257.552@626,2257.552@627,2257.552@628,2257.552@629,2257.552@630,2257.552@631,2257.552@632,2257.552@633,2257.552@634,2257.552@635,2257.552@636,2257.552@637,2257.552@638,2257.552@639,2257.552@640,2257.552@641,2257.552@642,2257.552@643,2257.552@644,2257.552@645,2257.552@646,2257.552@647,2257.552@648,2257.552@649,2257.552@650,2257.552@651,2257.552@652,2257.552@653,2257.552@654,2257.552@655,2257.552@656,2257.552@657,2257.552@658,2257.552@659,2257.552@660,2257.552@661,2257.552@662,2257.552@663,2257.552@664,2257.552@665,2257.552@666,2257.552@667,2257.552@668,2257.552@669,2257.552@670,2257.552@671,2257.552@672,2257.552@673,2257.552@674,2257.552@675,2257.552@676,2257.552@677,2257.552@678,2257.552@679,2257.552@680,2257.552@681,2257.552@682,2257.552@683,2257.552@684,2257.552@685,2257.552@686,2257.552@687,2257.552@688,2257.552@689,2257.552@690,2257.552@691,2257.552@692,2257.552@693,2257.552@694,2257.552@695,2257.552@696,2257.552@697,2257.552@698,2257.552@699,2257.552@700,2257.552@701,2257.552@702,2257.552@703,2257.552@704,2257.552@705,2257.552@706,2257.552@707,2257.552@708,2257.552@709,2257.552@710,2257.552@711,2257.552@712,2257.552@713,2257.552@714,2257.552@715,2257.552@716,2257.552@717,2257.552@718,2257.552@719,2257.552@720,2257.552@721,2257.552@722,2257.552@723);
120
+
121
+ curve float distortion = Linear(0,0.000@1,0.000@2,0.000@3,0.000@4,0.000@5,0.000@6,0.000@7,0.000@8,0.000@9,0.000@10,0.000@11,0.000@12,0.000@13,0.000@14,0.000@15,0.000@16,0.000@17,0.000@18,0.000@19,0.000@20,0.000@21,0.000@22,0.000@23,0.000@24,0.000@25,0.000@26,0.000@27,0.000@28,0.000@29,0.000@30,0.000@31,0.000@32,0.000@33,0.000@34,0.000@35,0.000@36,0.000@37,0.000@38,0.000@39,0.000@40,0.000@41,0.000@42,0.000@43,0.000@44,0.000@45,0.000@46,0.000@47,0.000@48,0.000@49,0.000@50,0.000@51,0.000@52,0.000@53,0.000@54,0.000@55,0.000@56,0.000@57,0.000@58,0.000@59,0.000@60,0.000@61,0.000@62,0.000@63,0.000@64,0.000@65,0.000@66,0.000@67,0.000@68,0.000@69,0.000@70,0.000@71,0.000@72,0.000@73,0.000@74,0.000@75,0.000@76,0.000@77,0.000@78,0.000@79,0.000@80,0.000@81,0.000@82,0.000@83,0.000@84,0.000@85,0.000@86,0.000@87,0.000@88,0.000@89,0.000@90,0.000@91,0.000@92,0.000@93,0.000@94,0.000@95,0.000@96,0.000@97,0.000@98,0.000@99,0.000@100,0.000@101,0.000@102,0.000@103,0.000@104,0.000@105,0.000@106,0.000@107,0.000@108,0.000@109,0.000@110,0.000@111,0.000@112,0.000@113,0.000@114,0.000@115,0.000@116,0.000@117,0.000@118,0.000@119,0.000@120,0.000@121,0.000@122,0.000@123,0.000@124,0.000@125,0.000@126,0.000@127,0.000@128,0.000@129,0.000@130,0.000@131,0.000@132,0.000@133,0.000@134,0.000@135,0.000@136,0.000@137,0.000@138,0.000@139,0.000@140,0.000@141,0.000@142,0.000@143,0.000@144,0.000@145,0.000@146,0.000@147,0.000@148,0.000@149,0.000@150,0.000@151,0.000@152,0.000@153,0.000@154,0.000@155,0.000@156,0.000@157,0.000@158,0.000@159,0.000@160,0.000@161,0.000@162,0.000@163,0.000@164,0.000@165,0.000@166,0.000@167,0.000@168,0.000@169,0.000@170,0.000@171,0.000@172,0.000@173,0.000@174,0.000@175,0.000@176,0.000@177,0.000@178,0.000@179,0.000@180,0.000@181,0.000@182,0.000@183,0.000@184,0.000@185,0.000@186,0.000@187,0.000@188,0.000@189,0.000@190,0.000@191,0.000@192,0.000@193,0.000@194,0.000@195,0.000@196,0.000@197,0.000@198,0.000@199,0.000@200,0.000@201,0.000@202,0.000@203,0.000@204,0.000@205,0.000@206,0.000@207,0.000@208,0.000@209,0.000@210,0.000@211,0.000@212,0.000@213,0.000@214,0.000@215,0.000@216,0.000@217,0.000@218,0.000@219,0.000@220,0.000@221,0.000@222,0.000@223,0.000@224,0.000@225,0.000@226,0.000@227,0.000@228,0.000@229,0.000@230,0.000@231,0.000@232,0.000@233,0.000@234,0.000@235,0.000@236,0.000@237,0.000@238,0.000@239,0.000@240,0.000@241,0.000@242,0.000@243,0.000@244,0.000@245,0.000@246,0.000@247,0.000@248,0.000@249,0.000@250,0.000@251,0.000@252,0.000@253,0.000@254,0.000@255,0.000@256,0.000@257,0.000@258,0.000@259,0.000@260,0.000@261,0.000@262,0.000@263,0.000@264,0.000@265,0.000@266,0.000@267,0.000@268,0.000@269,0.000@270,0.000@271,0.000@272,0.000@273,0.000@274,0.000@275,0.000@276,0.000@277,0.000@278,0.000@279,0.000@280,0.000@281,0.000@282,0.000@283,0.000@284,0.000@285,0.000@286,0.000@287,0.000@288,0.000@289,0.000@290,0.000@291,0.000@292,0.000@293,0.000@294,0.000@295,0.000@296,0.000@297,0.000@298,0.000@299,0.000@300,0.000@301,0.000@302,0.000@303,0.000@304,0.000@305,0.000@306,0.000@307,0.000@308,0.000@309,0.000@310,0.000@311,0.000@312,0.000@313,0.000@314,0.000@315,0.000@316,0.000@317,0.000@318,0.000@319,0.000@320,0.000@321,0.000@322,0.000@323,0.000@324,0.000@325,0.000@326,0.000@327,0.000@328,0.000@329,0.000@330,0.000@331,0.000@332,0.000@333,0.000@334,0.000@335,0.000@336,0.000@337,0.000@338,0.000@339,0.000@340,0.000@341,0.000@342,0.000@343,0.000@344,0.000@345,0.000@346,0.000@347,0.000@348,0.000@349,0.000@350,0.000@351,0.000@352,0.000@353,0.000@354,0.000@355,0.000@356,0.000@357,0.000@358,0.000@359,0.000@360,0.000@361,0.000@362,0.000@363,0.000@364,0.000@365,0.000@366,0.000@367,0.000@368,0.000@369,0.000@370,0.000@371,0.000@372,0.000@373,0.000@374,0.000@375,0.000@376,0.000@377,0.000@378,0.000@379,0.000@380,0.000@381,0.000@382,0.000@383,0.000@384,0.000@385,0.000@386,0.000@387,0.000@388,0.000@389,0.000@390,0.000@391,0.000@392,0.000@393,0.000@394,0.000@395,0.000@396,0.000@397,0.000@398,0.000@399,0.000@400,0.000@401,0.000@402,0.000@403,0.000@404,0.000@405,0.000@406,0.000@407,0.000@408,0.000@409,0.000@410,0.000@411,0.000@412,0.000@413,0.000@414,0.000@415,0.000@416,0.000@417,0.000@418,0.000@419,0.000@420,0.000@421,0.000@422,0.000@423,0.000@424,0.000@425,0.000@426,0.000@427,0.000@428,0.000@429,0.000@430,0.000@431,0.000@432,0.000@433,0.000@434,0.000@435,0.000@436,0.000@437,0.000@438,0.000@439,0.000@440,0.000@441,0.000@442,0.000@443,0.000@444,0.000@445,0.000@446,0.000@447,0.000@448,0.000@449,0.000@450,0.000@451,0.000@452,0.000@453,0.000@454,0.000@455,0.000@456,0.000@457,0.000@458,0.000@459,0.000@460,0.000@461,0.000@462,0.000@463,0.000@464,0.000@465,0.000@466,0.000@467,0.000@468,0.000@469,0.000@470,0.000@471,0.000@472,0.000@473,0.000@474,0.000@475,0.000@476,0.000@477,0.000@478,0.000@479,0.000@480,0.000@481,0.000@482,0.000@483,0.000@484,0.000@485,0.000@486,0.000@487,0.000@488,0.000@489,0.000@490,0.000@491,0.000@492,0.000@493,0.000@494,0.000@495,0.000@496,0.000@497,0.000@498,0.000@499,0.000@500,0.000@501,0.000@502,0.000@503,0.000@504,0.000@505,0.000@506,0.000@507,0.000@508,0.000@509,0.000@510,0.000@511,0.000@512,0.000@513,0.000@514,0.000@515,0.000@516,0.000@517,0.000@518,0.000@519,0.000@520,0.000@521,0.000@522,0.000@523,0.000@524,0.000@525,0.000@526,0.000@527,0.000@528,0.000@529,0.000@530,0.000@531,0.000@532,0.000@533,0.000@534,0.000@535,0.000@536,0.000@537,0.000@538,0.000@539,0.000@540,0.000@541,0.000@542,0.000@543,0.000@544,0.000@545,0.000@546,0.000@547,0.000@548,0.000@549,0.000@550,0.000@551,0.000@552,0.000@553,0.000@554,0.000@555,0.000@556,0.000@557,0.000@558,0.000@559,0.000@560,0.000@561,0.000@562,0.000@563,0.000@564,0.000@565,0.000@566,0.000@567,0.000@568,0.000@569,0.000@570,0.000@571,0.000@572,0.000@573,0.000@574,0.000@575,0.000@576,0.000@577,0.000@578,0.000@579,0.000@580,0.000@581,0.000@582,0.000@583,0.000@584,0.000@585,0.000@586,0.000@587,0.000@588,0.000@589,0.000@590,0.000@591,0.000@592,0.000@593,0.000@594,0.000@595,0.000@596,0.000@597,0.000@598,0.000@599,0.000@600,0.000@601,0.000@602,0.000@603,0.000@604,0.000@605,0.000@606,0.000@607,0.000@608,0.000@609,0.000@610,0.000@611,0.000@612,0.000@613,0.000@614,0.000@615,0.000@616,0.000@617,0.000@618,0.000@619,0.000@620,0.000@621,0.000@622,0.000@623,0.000@624,0.000@625,0.000@626,0.000@627,0.000@628,0.000@629,0.000@630,0.000@631,0.000@632,0.000@633,0.000@634,0.000@635,0.000@636,0.000@637,0.000@638,0.000@639,0.000@640,0.000@641,0.000@642,0.000@643,0.000@644,0.000@645,0.000@646,0.000@647,0.000@648,0.000@649,0.000@650,0.000@651,0.000@652,0.000@653,0.000@654,0.000@655,0.000@656,0.000@657,0.000@658,0.000@659,0.000@660,0.000@661,0.000@662,0.000@663,0.000@664,0.000@665,0.000@666,0.000@667,0.000@668,0.000@669,0.000@670,0.000@671,0.000@672,0.000@673,0.000@674,0.000@675,0.000@676,0.000@677,0.000@678,0.000@679,0.000@680,0.000@681,0.000@682,0.000@683,0.000@684,0.000@685,0.000@686,0.000@687,0.000@688,0.000@689,0.000@690,0.000@691,0.000@692,0.000@693,0.000@694,0.000@695,0.000@696,0.000@697,0.000@698,0.000@699,0.000@700,0.000@701,0.000@702,0.000@703,0.000@704,0.000@705,0.000@706,0.000@707,0.000@708,0.000@709,0.000@710,0.000@711,0.000@712,0.000@713,0.000@714,0.000@715,0.000@716,0.000@717,0.000@718,0.000@719,0.000@720,0.000@721,0.000@722,0.000@723);
122
+
123
+ rzDistort = WarpX(
124
+ 0,
125
+ 1,
126
+ {{ float k=distortion/(focal*focal); float alpha=1; float ppx=width/2; float ppy=height/2; float xc=x-ppx; float yc=y-ppy; float rr=xc*xc+(yc*yc)/(alpha*alpha); float newr=1+k*rr; xc*newr+ppx; }},
127
+ {{ float k=distortion/(focal*focal); float alpha=1; float ppx=width/2; float ppy=height/2; float xc=x-ppx; float yc=y-ppy; float rr=xc*xc+(yc*yc)/(alpha*alpha); float newr=1+k*rr; yc*newr+ppy; }},
128
+ 1,
129
+ 1);
130
+
131
+
132
+ rzUnDistort = WarpX(
133
+ 0,
134
+ 1,
135
+ {{ if (((x==0) && (y==0)) || (distortion==0)) return x; float k=distortion/(focal*focal); float alpha=1; float ppx=width/2; float ppy=height/2; float xc=x-ppx; float yc=y-ppy; float Rd; float Ru=sqrt((xc*xc)+(yc*yc)/(alpha*alpha)); float c=1/k; float d=(-c)*Ru; float Q=c/3; float R=(-d)/2; float D=(Q*Q*Q)+(R*R); if (D>=0) { D=sqrt(D); float S; if ((R+D)<0) { S=-cbrt(-R-D) } else { S=cbrt(R+D); } float T; if (R<D) { T=-cbrt(D-R) } else { T=cbrt(R-D) } Rd=S+T; } else { D=sqrt(-D); float S=cbrt(sqrt((R*R)+(D*D))); float T=atan2(D,R)/3; float sinT=sin(T); float cosT=cos(T); Rd=(-S*cosT)+(sqrt(3)*S*sinT); }; float lambda=Rd/Ru; xc*lambda+ppx; }},
136
+ {{ if (((x==0) && (y==0)) || (distortion==0)) return y; float k=distortion/(focal*focal); float alpha=1; float ppx=width/2; float ppy=height/2; float xc=x-ppx; float yc=y-ppy; float Rd; float Ru=sqrt((xc*xc)+(yc*yc)/(alpha*alpha)); float c=1/k; float d=(-c)*Ru; float Q=c/3; float R=(-d)/2; float D=(Q*Q*Q)+(R*R); if (D>=0) { D=sqrt(D); float S; if ((R+D)<0) { S=-cbrt(-R-D) } else { S=cbrt(R+D); } float T; if (R<D) { T=-cbrt(D-R) } else { T=cbrt(R-D) } Rd=S+T; } else { D=sqrt(-D); float S=cbrt(sqrt((R*R)+(D*D))); float T=atan2(D,R)/3; float sinT=sin(T); float cosT=cos(T); Rd=(-S*cosT)+(sqrt(3)*S*sinT); }; float lambda=Rd/Ru; yc*lambda+ppy; }},
137
+ 1,
138
+ 1);
139
+
140
+
@@ -110,4 +110,10 @@ class ShakeScriptImportTest < Test::Unit::TestCase
110
110
  assert_in_delta 1256.72, last_kf.abs_x, DELTA
111
111
  assert_in_delta 1569.04, last_kf.abs_y, DELTA
112
112
  end
113
+
114
+ def test_file_from_matchmover
115
+ fixture = File.open(File.dirname(__FILE__) + "/samples/shake_script/from_matchmover.shk")
116
+ trackers = Tracksperanto::Import::ShakeScript.new(:width => 1920, :height => 1080).parse(fixture)
117
+ assert_equal 8, trackers.length
118
+ end
113
119
  end
@@ -0,0 +1,14 @@
1
+ require File.dirname(__FILE__) + '/../helper'
2
+
3
+ class DistortMiddlewareTest < Test::Unit::TestCase
4
+ include ParabolicTracks
5
+
6
+ def test_truth
7
+ File.open("/tmp/dist.nk", "w") do |f |
8
+ nx = Tracksperanto::Export::NukeScript.new(f)
9
+ dist = Tracksperanto::Middleware::LensDistort.new(nx, :k => 0.03, :kcube => 0.02, :extend_image => true)
10
+ export_parabolics_with(dist)
11
+ end
12
+ end
13
+
14
+ end
@@ -11,11 +11,11 @@ class TestBufferIO < Test::Unit::TestCase
11
11
 
12
12
  def test_write_larger_than_max_swaps_tempfile
13
13
  io = Tracksperanto::BufferIO.new
14
- 110_000.times { io.write("a") }
14
+ io.write("a" * 6_000_001)
15
15
  f = io.__getobj__
16
16
  assert_kind_of Tempfile, f
17
17
  f.rewind
18
- assert_equal 110_000, f.read.length
18
+ assert_equal 6_000_001, f.read.length
19
19
  flexmock(f).should_receive(:close!).once
20
20
  io.close!
21
21
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tracksperanto
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.9.4
4
+ version: 1.9.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Julik Tarkhanov
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2010-04-16 00:00:00 +02:00
12
+ date: 2010-05-17 00:00:00 +02:00
13
13
  default_executable:
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
@@ -160,6 +160,7 @@ files:
160
160
  - test/import/samples/pftrack5/garage.2dt
161
161
  - test/import/samples/shake_script/four_tracks_in_one_matchmove.shk
162
162
  - test/import/samples/shake_script/four_tracks_in_one_stabilizer.shk
163
+ - test/import/samples/shake_script/from_matchmover.shk
163
164
  - test/import/samples/shake_script/shake_script_from_boujou.shk
164
165
  - test/import/samples/shake_script/shake_tracker_nodes.shk
165
166
  - test/import/samples/shake_script/shake_tracker_with_no_anim.shk
@@ -264,6 +265,7 @@ test_files:
264
265
  - test/import/test_syntheyes_import.rb
265
266
  - test/middleware/test_golden_middleware.rb
266
267
  - test/middleware/test_length_cutoff_middleware.rb
268
+ - test/middleware/test_lens_distort_middleware.rb
267
269
  - test/middleware/test_lerp_middleware.rb
268
270
  - test/middleware/test_prefix.rb
269
271
  - test/middleware/test_reformat_middleware.rb