tracksperanto 2.8.5 → 2.8.6

Sign up to get free protection for your applications and to get access to all the features.
data/Gemfile CHANGED
@@ -1,9 +1,9 @@
1
1
  # -*- ruby -*-
2
2
  source :rubygems
3
3
 
4
- gem "obuf", "~> 1.0.1"
4
+ gem "obuf", "~> 1.0.4"
5
5
  gem "progressive_io", "~> 1.0"
6
- gem "flame_channel_parser", "~> 3.0"
6
+ gem "flame_channel_parser", "~> 4.0"
7
7
  gem "progressbar", "~> 0.9"
8
8
  gem "update_hints", "~> 1.0"
9
9
 
data/History.txt CHANGED
@@ -1,3 +1,7 @@
1
+ === 2.8.6
2
+
3
+ * Ensure the Flame cornerpin export module always exports points in the proper Z-order
4
+
1
5
  === 2.8.5
2
6
 
3
7
  * Add Pad and Crop middlewares for fixing botched telecine and anamorphic Alexa
data/MIT_LICENSE.txt CHANGED
@@ -1,4 +1,4 @@
1
- Copyright (c) 2004-2011 Julik Tarkhanov
1
+ Copyright (c) 2004-2012 Julik Tarkhanov
2
2
 
3
3
  Permission is hereby granted, free of charge, to any person obtaining
4
4
  a copy of this software and associated documentation files (the
data/README.rdoc CHANGED
@@ -35,7 +35,7 @@ applications at once. Also, you can always escape into the 2D world if no 3D app
35
35
  to be adequate. If you need to move from one app to another, you won't have to retrack.
36
36
 
37
37
  Another issue with tracks is adjusting to formats. Very few apps allow you to convert your
38
- tracks in one stop from format to format - like doing an unproportional scale on the
38
+ tracks in one step from format to format - like doing an unproportional scale on the
39
39
  tracks, or moving them a few pixels left and right. This comes at a high cost if the
40
40
  footage you are tracking came cropped or in a wrong aspect - the only way to solve the shot
41
41
  will be to retrack it from scratch. Tracksperanto allows you to work around this
data/bin/tracksperanto CHANGED
@@ -115,15 +115,8 @@ rescue CodeLoaded
115
115
  end
116
116
 
117
117
  input_file = ARGV.pop
118
- unless input_file
119
- $stderr.puts "No input file provided - should be the last argument. Also use the --help option."
120
- exit(1)
121
- end
122
-
123
- unless File.exist?(input_file)
124
- $stderr.puts "Input file #{input_file} does not exist"
125
- exit(1)
126
- end
118
+ fail "No input file provided - should be the last argument. Also use the --help option." unless input_file
119
+ fail "Input file #{input_file} does not exist" unless File.exist?(input_file)
127
120
 
128
121
  pbar = ProgressBar.new("Converting", 100, $stdout)
129
122
  progress = lambda do |percent,message|
@@ -151,8 +144,7 @@ rescue Tracksperanto::UnknownMiddlewareError => damn
151
144
  $stderr.puts "This is a bug, please report it"
152
145
  exit(2)
153
146
  rescue Exception => damn
154
- $stderr.puts damn.message
155
- exit(2)
147
+ fail damn.message
156
148
  ensure
157
149
  pbar.finish
158
150
  end
@@ -16,12 +16,12 @@ class Tracksperanto::Export::FlameStabilizer < Tracksperanto::Export::Base
16
16
  @counter = 0
17
17
  @width, @height = img_width, img_height
18
18
  @temp = Tracksperanto::BufferIO.new
19
- @writer = Tracksperanto::FlameBuilder.new(@temp)
19
+ @writer = FlameChannelParser::Builder.new(@temp)
20
20
  end
21
21
 
22
22
  def end_export
23
23
  # Now make another writer, this time for our main IO
24
- @writer = Tracksperanto::FlameBuilder.new(@io)
24
+ @writer = FlameChannelParser::Builder.new(@io)
25
25
 
26
26
  # Now we know how many trackers we have so we can write the header
27
27
  # data along with NbTrackers
@@ -115,7 +115,7 @@ class Tracksperanto::Export::FlameStabilizer < Tracksperanto::Export::Base
115
115
  end
116
116
 
117
117
  def prefix(tracker_channel)
118
- ["tracker#{@counter}", tracker_channel].join("/")
118
+ "tracker%d/%s" % [@counter, tracker_channel]
119
119
  end
120
120
 
121
121
  def write_header_with_number_of_trackers(number_of_trackers)
@@ -1,7 +1,6 @@
1
1
  # Exports setups with tracker naming that works with the Action bilinears
2
2
  class Tracksperanto::Export::FlameStabilizerCornerpin < Tracksperanto::Export::FlameStabilizer
3
3
 
4
- CORNERPIN_NAMING = %w( none top_left top_right bottom_left bottom_right )
5
4
 
6
5
  def self.desc_and_extension
7
6
  "flame_cornerpin.stabilizer"
@@ -11,8 +10,74 @@ class Tracksperanto::Export::FlameStabilizerCornerpin < Tracksperanto::Export::F
11
10
  "Flame/Smoke 2D Stabilizer setup for bilinear corner pins"
12
11
  end
13
12
 
13
+ # The trackers for cornerpins should go in Z order, like this
14
+ # TL -> TR
15
+ # /
16
+ # _______/
17
+ # |
18
+ # BL -> BR
19
+ # This "kinda middleware" ensures that this is indeed taking place
20
+ class Sorter < DelegateClass(Tracksperanto::Export::Base)
21
+ include Tracksperanto::SimpleExport # so that it calls OUR methods
22
+
23
+ def initialize(exporter)
24
+ __setobj__(exporter)
25
+ @exp = exporter
26
+ end
27
+
28
+ def start_export(w,h)
29
+ @width, @height = w, h
30
+ @corners, @four_done = [], false
31
+ end
32
+
33
+ def start_tracker_segment(name)
34
+ @four_done = (@corners.length == 4)
35
+ return if @four_done
36
+ @corners.push(Tracksperanto::Tracker.new(:name => name))
37
+ end
38
+
39
+ def export_point(f, x, y, r)
40
+ return if @four_done
41
+ @corners[-1].keyframe! :frame => f, :abs_x => x, :abs_y => y, :residual => r
42
+ end
43
+
44
+ def end_tracker_segment
45
+ # Just leave that
46
+ end
47
+
48
+ def end_export
49
+ # We will have problems sorting if we have too few trackers
50
+ return @exp.just_export(@corners, @width, @height) unless @corners.length == 4
51
+
52
+ # Sort the trackers, first in Y of the first keyframe
53
+ in_y = sort_on_first_keyframe(@corners, :abs_y)
54
+
55
+ # then on the X for the two separate blocks for top and bottom
56
+ tl, tr = sort_on_first_keyframe(in_y[2..3], :abs_x)
57
+ bl, br = sort_on_first_keyframe(in_y[0..1], :abs_x)
58
+ bulk = [tl, tr, bl, br] # If we have less than 4 we might have a problem
59
+
60
+ @exp.just_export(bulk, @width, @height)
61
+ end
62
+
63
+ private
64
+
65
+ def sort_on_first_keyframe(enum, property)
66
+ enum.sort{|a, b| a[0].send(property) <=> b[0].send(property) }
67
+ end
68
+ end
69
+
70
+ # Initialize the exporter with a preconfigured sorter around it
71
+ def self.new(*arguments)
72
+ object = super
73
+ Sorter.new(object)
74
+ end
75
+
76
+ CORNERPIN_NAMING = %w( none top_left top_right bottom_left bottom_right )
77
+
78
+ # Overridden to give the right names to trackers
14
79
  def prefix(tracker_channel)
15
- tracker_name = CORNERPIN_NAMING[@counter] || ("tracker%d" % @counter)
80
+ tracker_name = CORNERPIN_NAMING[@counter]
16
81
  [tracker_name, tracker_channel].join("/")
17
82
  end
18
83
 
data/lib/tracksperanto.rb CHANGED
@@ -7,7 +7,7 @@ require "progressive_io"
7
7
 
8
8
  module Tracksperanto
9
9
  PATH = File.expand_path(File.dirname(__FILE__))
10
- VERSION = '2.8.5'
10
+ VERSION = '2.8.6'
11
11
 
12
12
  module Import; end
13
13
  module Export; end
@@ -97,7 +97,6 @@ end
97
97
  buffer_io
98
98
  simple_export
99
99
  uv_coordinates
100
- flame_builder
101
100
  buffering_reader
102
101
  ).each do | submodule |
103
102
  require File.join(Tracksperanto::PATH, "tracksperanto", submodule)
@@ -0,0 +1,1946 @@
1
+ StabilizerFileVersion 5.0
2
+ CreationDate Thu Feb 18 17:22:12 2010
3
+
4
+
5
+ NbTrackers 4
6
+ Selected 0
7
+ FrameWidth 1920
8
+ FrameHeight 1080
9
+ AutoKey yes
10
+ MotionPath yes
11
+ Icons yes
12
+ AutoPan no
13
+ EditMode 0
14
+ Format 0
15
+ Padding
16
+ Red 0
17
+ Green 100
18
+ Blue 0
19
+ Oversampling no
20
+ Opacity 50
21
+ Zoom 3
22
+ Field no
23
+ Backward no
24
+ Anim
25
+ Channel top_left/track/x
26
+ Extrapolation constant
27
+ Value 960
28
+ Colour 50 50 50
29
+ End
30
+ Channel top_left/track/y
31
+ Extrapolation constant
32
+ Value 540
33
+ Colour 50 50 50
34
+ End
35
+ Channel top_left/track/width
36
+ Extrapolation linear
37
+ Value 15
38
+ Colour 50 50 50
39
+ End
40
+ Channel top_left/track/height
41
+ Extrapolation linear
42
+ Value 15
43
+ Colour 50 50 50
44
+ End
45
+ Channel top_left/ref/width
46
+ Extrapolation linear
47
+ Value 10
48
+ Colour 50 50 50
49
+ End
50
+ Channel top_left/ref/height
51
+ Extrapolation linear
52
+ Value 10
53
+ Colour 50 50 50
54
+ End
55
+ Channel top_left/ref/x
56
+ Extrapolation constant
57
+ Value 566.475
58
+ Colour 50 50 50
59
+ KeyVersion 1
60
+ Size 1
61
+ Key 0
62
+ Frame 1
63
+ Value 566.475
64
+ Interpolation constant
65
+ LeftSlope 2.400
66
+ RightSlope 2.400
67
+ End
68
+ End
69
+ Channel top_left/ref/y
70
+ Extrapolation constant
71
+ Value 790.690
72
+ Colour 50 50 50
73
+ KeyVersion 1
74
+ Size 1
75
+ Key 0
76
+ Frame 1
77
+ Value 790.690
78
+ Interpolation constant
79
+ LeftSlope 2.400
80
+ RightSlope 2.400
81
+ End
82
+ End
83
+ Channel top_left/ref/dx
84
+ Extrapolation constant
85
+ Value 0
86
+ Colour 50 50 50
87
+ Size 2
88
+ KeyVersion 1
89
+ Key 0
90
+ Frame 0
91
+ Value 0
92
+ ValueLock yes
93
+ DeleteLock yes
94
+ Interpolation constant
95
+ End
96
+ Key 1
97
+ Frame 1
98
+ Value 0
99
+ ValueLock yes
100
+ DeleteLock yes
101
+ Interpolation constant
102
+ End
103
+ End
104
+ Channel top_left/ref/dy
105
+ Extrapolation constant
106
+ Value 0
107
+ Colour 50 50 50
108
+ Size 2
109
+ KeyVersion 1
110
+ Key 0
111
+ Frame 0
112
+ Value 0
113
+ ValueLock yes
114
+ DeleteLock yes
115
+ Interpolation constant
116
+ End
117
+ Key 1
118
+ Frame 1
119
+ Value 0
120
+ ValueLock yes
121
+ DeleteLock yes
122
+ Interpolation constant
123
+ End
124
+ End
125
+ Channel top_left/shift/x
126
+ Extrapolation constant
127
+ Value 0
128
+ KeyVersion 1
129
+ Size 25
130
+ Key 0
131
+ Frame 1
132
+ Value 0
133
+ Interpolation linear
134
+ LeftSlope 2.400
135
+ RightSlope 2.400
136
+ End
137
+ Key 1
138
+ Frame 2
139
+ Value -3.862
140
+ Interpolation linear
141
+ LeftSlope 2.400
142
+ RightSlope 2.400
143
+ End
144
+ Key 2
145
+ Frame 3
146
+ Value -10.000
147
+ Interpolation linear
148
+ LeftSlope 2.400
149
+ RightSlope 2.400
150
+ End
151
+ Key 3
152
+ Frame 4
153
+ Value -20.860
154
+ Interpolation linear
155
+ LeftSlope 2.400
156
+ RightSlope 2.400
157
+ End
158
+ Key 4
159
+ Frame 5
160
+ Value -35.928
161
+ Interpolation linear
162
+ LeftSlope 2.400
163
+ RightSlope 2.400
164
+ End
165
+ Key 5
166
+ Frame 6
167
+ Value -54.000
168
+ Interpolation linear
169
+ LeftSlope 2.400
170
+ RightSlope 2.400
171
+ End
172
+ Key 6
173
+ Frame 7
174
+ Value -75.624
175
+ Interpolation linear
176
+ LeftSlope 2.400
177
+ RightSlope 2.400
178
+ End
179
+ Key 7
180
+ Frame 8
181
+ Value -99.414
182
+ Interpolation linear
183
+ LeftSlope 2.400
184
+ RightSlope 2.400
185
+ End
186
+ Key 8
187
+ Frame 9
188
+ Value -126.000
189
+ Interpolation linear
190
+ LeftSlope 2.400
191
+ RightSlope 2.400
192
+ End
193
+ Key 9
194
+ Frame 10
195
+ Value -152.980
196
+ Interpolation linear
197
+ LeftSlope 2.400
198
+ RightSlope 2.400
199
+ End
200
+ Key 10
201
+ Frame 11
202
+ Value -182.046
203
+ Interpolation linear
204
+ LeftSlope 2.400
205
+ RightSlope 2.400
206
+ End
207
+ Key 11
208
+ Frame 12
209
+ Value -211.663
210
+ Interpolation linear
211
+ LeftSlope 2.400
212
+ RightSlope 2.400
213
+ End
214
+ Key 12
215
+ Frame 13
216
+ Value -241.552
217
+ Interpolation linear
218
+ LeftSlope 2.400
219
+ RightSlope 2.400
220
+ End
221
+ Key 13
222
+ Frame 14
223
+ Value -271.857
224
+ Interpolation linear
225
+ LeftSlope 2.400
226
+ RightSlope 2.400
227
+ End
228
+ Key 14
229
+ Frame 15
230
+ Value -301.464
231
+ Interpolation linear
232
+ LeftSlope 2.400
233
+ RightSlope 2.400
234
+ End
235
+ Key 15
236
+ Frame 16
237
+ Value -330.369
238
+ Interpolation linear
239
+ LeftSlope 2.400
240
+ RightSlope 2.400
241
+ End
242
+ Key 16
243
+ Frame 17
244
+ Value -358.068
245
+ Interpolation linear
246
+ LeftSlope 2.400
247
+ RightSlope 2.400
248
+ End
249
+ Key 17
250
+ Frame 18
251
+ Value -383.875
252
+ Interpolation linear
253
+ LeftSlope 2.400
254
+ RightSlope 2.400
255
+ End
256
+ Key 18
257
+ Frame 19
258
+ Value -407.794
259
+ Interpolation linear
260
+ LeftSlope 2.400
261
+ RightSlope 2.400
262
+ End
263
+ Key 19
264
+ Frame 20
265
+ Value -429.061
266
+ Interpolation linear
267
+ LeftSlope 2.400
268
+ RightSlope 2.400
269
+ End
270
+ Key 20
271
+ Frame 21
272
+ Value -447.430
273
+ Interpolation linear
274
+ LeftSlope 2.400
275
+ RightSlope 2.400
276
+ End
277
+ Key 21
278
+ Frame 22
279
+ Value -462.448
280
+ Interpolation linear
281
+ LeftSlope 2.400
282
+ RightSlope 2.400
283
+ End
284
+ Key 22
285
+ Frame 23
286
+ Value -473.706
287
+ Interpolation linear
288
+ LeftSlope 2.400
289
+ RightSlope 2.400
290
+ End
291
+ Key 23
292
+ Frame 24
293
+ Value -480.803
294
+ Interpolation linear
295
+ LeftSlope 2.400
296
+ RightSlope 2.400
297
+ End
298
+ Key 24
299
+ Frame 25
300
+ Value -483.167
301
+ Interpolation linear
302
+ LeftSlope 2.400
303
+ RightSlope 2.400
304
+ End
305
+ End
306
+ Channel top_left/shift/y
307
+ Extrapolation constant
308
+ Value 0
309
+ KeyVersion 1
310
+ Size 25
311
+ Key 0
312
+ Frame 1
313
+ Value 0
314
+ Interpolation linear
315
+ LeftSlope 2.400
316
+ RightSlope 2.400
317
+ End
318
+ Key 1
319
+ Frame 2
320
+ Value 0.480
321
+ Interpolation linear
322
+ LeftSlope 2.400
323
+ RightSlope 2.400
324
+ End
325
+ Key 2
326
+ Frame 3
327
+ Value 3.000
328
+ Interpolation linear
329
+ LeftSlope 2.400
330
+ RightSlope 2.400
331
+ End
332
+ Key 3
333
+ Frame 4
334
+ Value 7.065
335
+ Interpolation linear
336
+ LeftSlope 2.400
337
+ RightSlope 2.400
338
+ End
339
+ Key 4
340
+ Frame 5
341
+ Value 12.046
342
+ Interpolation linear
343
+ LeftSlope 2.400
344
+ RightSlope 2.400
345
+ End
346
+ Key 5
347
+ Frame 6
348
+ Value 19.000
349
+ Interpolation linear
350
+ LeftSlope 2.400
351
+ RightSlope 2.400
352
+ End
353
+ Key 6
354
+ Frame 7
355
+ Value 25.400
356
+ Interpolation linear
357
+ LeftSlope 2.400
358
+ RightSlope 2.400
359
+ End
360
+ Key 7
361
+ Frame 8
362
+ Value 33.737
363
+ Interpolation linear
364
+ LeftSlope 2.400
365
+ RightSlope 2.400
366
+ End
367
+ Key 8
368
+ Frame 9
369
+ Value 42.000
370
+ Interpolation linear
371
+ LeftSlope 2.400
372
+ RightSlope 2.400
373
+ End
374
+ Key 9
375
+ Frame 10
376
+ Value 51.677
377
+ Interpolation linear
378
+ LeftSlope 2.400
379
+ RightSlope 2.400
380
+ End
381
+ Key 10
382
+ Frame 11
383
+ Value 61.050
384
+ Interpolation linear
385
+ LeftSlope 2.400
386
+ RightSlope 2.400
387
+ End
388
+ Key 11
389
+ Frame 12
390
+ Value 71.189
391
+ Interpolation linear
392
+ LeftSlope 2.400
393
+ RightSlope 2.400
394
+ End
395
+ Key 12
396
+ Frame 13
397
+ Value 81.980
398
+ Interpolation linear
399
+ LeftSlope 2.400
400
+ RightSlope 2.400
401
+ End
402
+ Key 13
403
+ Frame 14
404
+ Value 92.044
405
+ Interpolation linear
406
+ LeftSlope 2.400
407
+ RightSlope 2.400
408
+ End
409
+ Key 14
410
+ Frame 15
411
+ Value 102.055
412
+ Interpolation linear
413
+ LeftSlope 2.400
414
+ RightSlope 2.400
415
+ End
416
+ Key 15
417
+ Frame 16
418
+ Value 111.959
419
+ Interpolation linear
420
+ LeftSlope 2.400
421
+ RightSlope 2.400
422
+ End
423
+ Key 16
424
+ Frame 17
425
+ Value 121.144
426
+ Interpolation linear
427
+ LeftSlope 2.400
428
+ RightSlope 2.400
429
+ End
430
+ Key 17
431
+ Frame 18
432
+ Value 130.013
433
+ Interpolation linear
434
+ LeftSlope 2.400
435
+ RightSlope 2.400
436
+ End
437
+ Key 18
438
+ Frame 19
439
+ Value 138.057
440
+ Interpolation linear
441
+ LeftSlope 2.400
442
+ RightSlope 2.400
443
+ End
444
+ Key 19
445
+ Frame 20
446
+ Value 145.418
447
+ Interpolation linear
448
+ LeftSlope 2.400
449
+ RightSlope 2.400
450
+ End
451
+ Key 20
452
+ Frame 21
453
+ Value 151.718
454
+ Interpolation linear
455
+ LeftSlope 2.400
456
+ RightSlope 2.400
457
+ End
458
+ Key 21
459
+ Frame 22
460
+ Value 156.856
461
+ Interpolation linear
462
+ LeftSlope 2.400
463
+ RightSlope 2.400
464
+ End
465
+ Key 22
466
+ Frame 23
467
+ Value 160.754
468
+ Interpolation linear
469
+ LeftSlope 2.400
470
+ RightSlope 2.400
471
+ End
472
+ Key 23
473
+ Frame 24
474
+ Value 163.223
475
+ Interpolation linear
476
+ LeftSlope 2.400
477
+ RightSlope 2.400
478
+ End
479
+ Key 24
480
+ Frame 25
481
+ Value 164.011
482
+ Interpolation linear
483
+ LeftSlope 2.400
484
+ RightSlope 2.400
485
+ End
486
+ End
487
+ Channel top_left/offset/x
488
+ Extrapolation constant
489
+ Value 0
490
+ End
491
+ Channel top_left/offset/y
492
+ Extrapolation constant
493
+ Value 0
494
+ End
495
+ Channel top_right/track/x
496
+ Extrapolation constant
497
+ Value 960
498
+ Colour 50 50 50
499
+ End
500
+ Channel top_right/track/y
501
+ Extrapolation constant
502
+ Value 540
503
+ Colour 50 50 50
504
+ End
505
+ Channel top_right/track/width
506
+ Extrapolation linear
507
+ Value 15
508
+ Colour 50 50 50
509
+ End
510
+ Channel top_right/track/height
511
+ Extrapolation linear
512
+ Value 15
513
+ Colour 50 50 50
514
+ End
515
+ Channel top_right/ref/width
516
+ Extrapolation linear
517
+ Value 10
518
+ Colour 50 50 50
519
+ End
520
+ Channel top_right/ref/height
521
+ Extrapolation linear
522
+ Value 10
523
+ Colour 50 50 50
524
+ End
525
+ Channel top_right/ref/x
526
+ Extrapolation constant
527
+ Value 1213.604
528
+ Colour 50 50 50
529
+ KeyVersion 1
530
+ Size 1
531
+ Key 0
532
+ Frame 1
533
+ Value 1213.604
534
+ Interpolation constant
535
+ LeftSlope 2.400
536
+ RightSlope 2.400
537
+ End
538
+ End
539
+ Channel top_right/ref/y
540
+ Extrapolation constant
541
+ Value 905.832
542
+ Colour 50 50 50
543
+ KeyVersion 1
544
+ Size 1
545
+ Key 0
546
+ Frame 1
547
+ Value 905.832
548
+ Interpolation constant
549
+ LeftSlope 2.400
550
+ RightSlope 2.400
551
+ End
552
+ End
553
+ Channel top_right/ref/dx
554
+ Extrapolation constant
555
+ Value 0
556
+ Colour 50 50 50
557
+ Size 2
558
+ KeyVersion 1
559
+ Key 0
560
+ Frame 0
561
+ Value 0
562
+ ValueLock yes
563
+ DeleteLock yes
564
+ Interpolation constant
565
+ End
566
+ Key 1
567
+ Frame 1
568
+ Value 0
569
+ ValueLock yes
570
+ DeleteLock yes
571
+ Interpolation constant
572
+ End
573
+ End
574
+ Channel top_right/ref/dy
575
+ Extrapolation constant
576
+ Value 0
577
+ Colour 50 50 50
578
+ Size 2
579
+ KeyVersion 1
580
+ Key 0
581
+ Frame 0
582
+ Value 0
583
+ ValueLock yes
584
+ DeleteLock yes
585
+ Interpolation constant
586
+ End
587
+ Key 1
588
+ Frame 1
589
+ Value 0
590
+ ValueLock yes
591
+ DeleteLock yes
592
+ Interpolation constant
593
+ End
594
+ End
595
+ Channel top_right/shift/x
596
+ Extrapolation constant
597
+ Value 0
598
+ KeyVersion 1
599
+ Size 25
600
+ Key 0
601
+ Frame 1
602
+ Value 0
603
+ Interpolation linear
604
+ LeftSlope 2.400
605
+ RightSlope 2.400
606
+ End
607
+ Key 1
608
+ Frame 2
609
+ Value -1.855
610
+ Interpolation linear
611
+ LeftSlope 2.400
612
+ RightSlope 2.400
613
+ End
614
+ Key 2
615
+ Frame 3
616
+ Value -5.878
617
+ Interpolation linear
618
+ LeftSlope 2.400
619
+ RightSlope 2.400
620
+ End
621
+ Key 3
622
+ Frame 4
623
+ Value -12.159
624
+ Interpolation linear
625
+ LeftSlope 2.400
626
+ RightSlope 2.400
627
+ End
628
+ Key 4
629
+ Frame 5
630
+ Value -21.005
631
+ Interpolation linear
632
+ LeftSlope 2.400
633
+ RightSlope 2.400
634
+ End
635
+ Key 5
636
+ Frame 6
637
+ Value -32.004
638
+ Interpolation linear
639
+ LeftSlope 2.400
640
+ RightSlope 2.400
641
+ End
642
+ Key 6
643
+ Frame 7
644
+ Value -43.994
645
+ Interpolation linear
646
+ LeftSlope 2.400
647
+ RightSlope 2.400
648
+ End
649
+ Key 7
650
+ Frame 8
651
+ Value -57.979
652
+ Interpolation linear
653
+ LeftSlope 2.400
654
+ RightSlope 2.400
655
+ End
656
+ Key 8
657
+ Frame 9
658
+ Value -73.111
659
+ Interpolation linear
660
+ LeftSlope 2.400
661
+ RightSlope 2.400
662
+ End
663
+ Key 9
664
+ Frame 10
665
+ Value -89.900
666
+ Interpolation linear
667
+ LeftSlope 2.400
668
+ RightSlope 2.400
669
+ End
670
+ Key 10
671
+ Frame 11
672
+ Value -106.541
673
+ Interpolation linear
674
+ LeftSlope 2.400
675
+ RightSlope 2.400
676
+ End
677
+ Key 11
678
+ Frame 12
679
+ Value -123.962
680
+ Interpolation linear
681
+ LeftSlope 2.400
682
+ RightSlope 2.400
683
+ End
684
+ Key 12
685
+ Frame 13
686
+ Value -141.413
687
+ Interpolation linear
688
+ LeftSlope 2.400
689
+ RightSlope 2.400
690
+ End
691
+ Key 13
692
+ Frame 14
693
+ Value -159.075
694
+ Interpolation linear
695
+ LeftSlope 2.400
696
+ RightSlope 2.400
697
+ End
698
+ Key 14
699
+ Frame 15
700
+ Value -176.624
701
+ Interpolation linear
702
+ LeftSlope 2.400
703
+ RightSlope 2.400
704
+ End
705
+ Key 15
706
+ Frame 16
707
+ Value -193.511
708
+ Interpolation linear
709
+ LeftSlope 2.400
710
+ RightSlope 2.400
711
+ End
712
+ Key 16
713
+ Frame 17
714
+ Value -209.651
715
+ Interpolation linear
716
+ LeftSlope 2.400
717
+ RightSlope 2.400
718
+ End
719
+ Key 17
720
+ Frame 18
721
+ Value -224.858
722
+ Interpolation linear
723
+ LeftSlope 2.400
724
+ RightSlope 2.400
725
+ End
726
+ Key 18
727
+ Frame 19
728
+ Value -238.930
729
+ Interpolation linear
730
+ LeftSlope 2.400
731
+ RightSlope 2.400
732
+ End
733
+ Key 19
734
+ Frame 20
735
+ Value -251.482
736
+ Interpolation linear
737
+ LeftSlope 2.400
738
+ RightSlope 2.400
739
+ End
740
+ Key 20
741
+ Frame 21
742
+ Value -262.214
743
+ Interpolation linear
744
+ LeftSlope 2.400
745
+ RightSlope 2.400
746
+ End
747
+ Key 21
748
+ Frame 22
749
+ Value -271.156
750
+ Interpolation linear
751
+ LeftSlope 2.400
752
+ RightSlope 2.400
753
+ End
754
+ Key 22
755
+ Frame 23
756
+ Value -277.703
757
+ Interpolation linear
758
+ LeftSlope 2.400
759
+ RightSlope 2.400
760
+ End
761
+ Key 23
762
+ Frame 24
763
+ Value -281.758
764
+ Interpolation linear
765
+ LeftSlope 2.400
766
+ RightSlope 2.400
767
+ End
768
+ Key 24
769
+ Frame 25
770
+ Value -283.240
771
+ Interpolation linear
772
+ LeftSlope 2.400
773
+ RightSlope 2.400
774
+ End
775
+ End
776
+ Channel top_right/shift/y
777
+ Extrapolation constant
778
+ Value 0
779
+ KeyVersion 1
780
+ Size 25
781
+ Key 0
782
+ Frame 1
783
+ Value 0
784
+ Interpolation linear
785
+ LeftSlope 2.400
786
+ RightSlope 2.400
787
+ End
788
+ Key 1
789
+ Frame 2
790
+ Value 2.092
791
+ Interpolation linear
792
+ LeftSlope 2.400
793
+ RightSlope 2.400
794
+ End
795
+ Key 2
796
+ Frame 3
797
+ Value 8.846
798
+ Interpolation linear
799
+ LeftSlope 2.400
800
+ RightSlope 2.400
801
+ End
802
+ Key 3
803
+ Frame 4
804
+ Value 19.203
805
+ Interpolation linear
806
+ LeftSlope 2.400
807
+ RightSlope 2.400
808
+ End
809
+ Key 4
810
+ Frame 5
811
+ Value 33.171
812
+ Interpolation linear
813
+ LeftSlope 2.400
814
+ RightSlope 2.400
815
+ End
816
+ Key 5
817
+ Frame 6
818
+ Value 50.208
819
+ Interpolation linear
820
+ LeftSlope 2.400
821
+ RightSlope 2.400
822
+ End
823
+ Key 6
824
+ Frame 7
825
+ Value 70.117
826
+ Interpolation linear
827
+ LeftSlope 2.400
828
+ RightSlope 2.400
829
+ End
830
+ Key 7
831
+ Frame 8
832
+ Value 92.188
833
+ Interpolation linear
834
+ LeftSlope 2.400
835
+ RightSlope 2.400
836
+ End
837
+ Key 8
838
+ Frame 9
839
+ Value 116.189
840
+ Interpolation linear
841
+ LeftSlope 2.400
842
+ RightSlope 2.400
843
+ End
844
+ Key 9
845
+ Frame 10
846
+ Value 141.849
847
+ Interpolation linear
848
+ LeftSlope 2.400
849
+ RightSlope 2.400
850
+ End
851
+ Key 10
852
+ Frame 11
853
+ Value 168.829
854
+ Interpolation linear
855
+ LeftSlope 2.400
856
+ RightSlope 2.400
857
+ End
858
+ Key 11
859
+ Frame 12
860
+ Value 195.939
861
+ Interpolation linear
862
+ LeftSlope 2.400
863
+ RightSlope 2.400
864
+ End
865
+ Key 12
866
+ Frame 13
867
+ Value 223.881
868
+ Interpolation linear
869
+ LeftSlope 2.400
870
+ RightSlope 2.400
871
+ End
872
+ Key 13
873
+ Frame 14
874
+ Value 251.871
875
+ Interpolation linear
876
+ LeftSlope 2.400
877
+ RightSlope 2.400
878
+ End
879
+ Key 14
880
+ Frame 15
881
+ Value 279.830
882
+ Interpolation linear
883
+ LeftSlope 2.400
884
+ RightSlope 2.400
885
+ End
886
+ Key 15
887
+ Frame 16
888
+ Value 306.649
889
+ Interpolation linear
890
+ LeftSlope 2.400
891
+ RightSlope 2.400
892
+ End
893
+ Key 16
894
+ Frame 17
895
+ Value 331.929
896
+ Interpolation linear
897
+ LeftSlope 2.400
898
+ RightSlope 2.400
899
+ End
900
+ Key 17
901
+ Frame 18
902
+ Value 356.062
903
+ Interpolation linear
904
+ LeftSlope 2.400
905
+ RightSlope 2.400
906
+ End
907
+ Key 18
908
+ Frame 19
909
+ Value 378.233
910
+ Interpolation linear
911
+ LeftSlope 2.400
912
+ RightSlope 2.400
913
+ End
914
+ Key 19
915
+ Frame 20
916
+ Value 397.971
917
+ Interpolation linear
918
+ LeftSlope 2.400
919
+ RightSlope 2.400
920
+ End
921
+ Key 20
922
+ Frame 21
923
+ Value 415.035
924
+ Interpolation linear
925
+ LeftSlope 2.400
926
+ RightSlope 2.400
927
+ End
928
+ Key 21
929
+ Frame 22
930
+ Value 429.017
931
+ Interpolation linear
932
+ LeftSlope 2.400
933
+ RightSlope 2.400
934
+ End
935
+ Key 22
936
+ Frame 23
937
+ Value 439.427
938
+ Interpolation linear
939
+ LeftSlope 2.400
940
+ RightSlope 2.400
941
+ End
942
+ Key 23
943
+ Frame 24
944
+ Value 445.844
945
+ Interpolation linear
946
+ LeftSlope 2.400
947
+ RightSlope 2.400
948
+ End
949
+ Key 24
950
+ Frame 25
951
+ Value 448.169
952
+ Interpolation linear
953
+ LeftSlope 2.400
954
+ RightSlope 2.400
955
+ End
956
+ End
957
+ Channel top_right/offset/x
958
+ Extrapolation constant
959
+ Value 0
960
+ End
961
+ Channel top_right/offset/y
962
+ Extrapolation constant
963
+ Value 0
964
+ End
965
+ Channel bottom_left/track/x
966
+ Extrapolation constant
967
+ Value 960
968
+ Colour 50 50 50
969
+ End
970
+ Channel bottom_left/track/y
971
+ Extrapolation constant
972
+ Value 540
973
+ Colour 50 50 50
974
+ End
975
+ Channel bottom_left/track/width
976
+ Extrapolation linear
977
+ Value 15
978
+ Colour 50 50 50
979
+ End
980
+ Channel bottom_left/track/height
981
+ Extrapolation linear
982
+ Value 15
983
+ Colour 50 50 50
984
+ End
985
+ Channel bottom_left/ref/width
986
+ Extrapolation linear
987
+ Value 10
988
+ Colour 50 50 50
989
+ End
990
+ Channel bottom_left/ref/height
991
+ Extrapolation linear
992
+ Value 10
993
+ Colour 50 50 50
994
+ End
995
+ Channel bottom_left/ref/x
996
+ Extrapolation constant
997
+ Value 259.199
998
+ Colour 50 50 50
999
+ KeyVersion 1
1000
+ Size 1
1001
+ Key 0
1002
+ Frame 1
1003
+ Value 259.199
1004
+ Interpolation constant
1005
+ LeftSlope 2.400
1006
+ RightSlope 2.400
1007
+ End
1008
+ End
1009
+ Channel bottom_left/ref/y
1010
+ Extrapolation constant
1011
+ Value 228.319
1012
+ Colour 50 50 50
1013
+ KeyVersion 1
1014
+ Size 1
1015
+ Key 0
1016
+ Frame 1
1017
+ Value 228.319
1018
+ Interpolation constant
1019
+ LeftSlope 2.400
1020
+ RightSlope 2.400
1021
+ End
1022
+ End
1023
+ Channel bottom_left/ref/dx
1024
+ Extrapolation constant
1025
+ Value 0
1026
+ Colour 50 50 50
1027
+ Size 2
1028
+ KeyVersion 1
1029
+ Key 0
1030
+ Frame 0
1031
+ Value 0
1032
+ ValueLock yes
1033
+ DeleteLock yes
1034
+ Interpolation constant
1035
+ End
1036
+ Key 1
1037
+ Frame 1
1038
+ Value 0
1039
+ ValueLock yes
1040
+ DeleteLock yes
1041
+ Interpolation constant
1042
+ End
1043
+ End
1044
+ Channel bottom_left/ref/dy
1045
+ Extrapolation constant
1046
+ Value 0
1047
+ Colour 50 50 50
1048
+ Size 2
1049
+ KeyVersion 1
1050
+ Key 0
1051
+ Frame 0
1052
+ Value 0
1053
+ ValueLock yes
1054
+ DeleteLock yes
1055
+ Interpolation constant
1056
+ End
1057
+ Key 1
1058
+ Frame 1
1059
+ Value 0
1060
+ ValueLock yes
1061
+ DeleteLock yes
1062
+ Interpolation constant
1063
+ End
1064
+ End
1065
+ Channel bottom_left/shift/x
1066
+ Extrapolation constant
1067
+ Value 0
1068
+ KeyVersion 1
1069
+ Size 25
1070
+ Key 0
1071
+ Frame 1
1072
+ Value 0
1073
+ Interpolation linear
1074
+ LeftSlope 2.400
1075
+ RightSlope 2.400
1076
+ End
1077
+ Key 1
1078
+ Frame 2
1079
+ Value -3.189
1080
+ Interpolation linear
1081
+ LeftSlope 2.400
1082
+ RightSlope 2.400
1083
+ End
1084
+ Key 2
1085
+ Frame 3
1086
+ Value -12.765
1087
+ Interpolation linear
1088
+ LeftSlope 2.400
1089
+ RightSlope 2.400
1090
+ End
1091
+ Key 3
1092
+ Frame 4
1093
+ Value -27.826
1094
+ Interpolation linear
1095
+ LeftSlope 2.400
1096
+ RightSlope 2.400
1097
+ End
1098
+ Key 4
1099
+ Frame 5
1100
+ Value -47.923
1101
+ Interpolation linear
1102
+ LeftSlope 2.400
1103
+ RightSlope 2.400
1104
+ End
1105
+ Key 5
1106
+ Frame 6
1107
+ Value -72.383
1108
+ Interpolation linear
1109
+ LeftSlope 2.400
1110
+ RightSlope 2.400
1111
+ End
1112
+ Key 6
1113
+ Frame 7
1114
+ Value -101.017
1115
+ Interpolation linear
1116
+ LeftSlope 2.400
1117
+ RightSlope 2.400
1118
+ End
1119
+ Key 7
1120
+ Frame 8
1121
+ Value -133.049
1122
+ Interpolation linear
1123
+ LeftSlope 2.400
1124
+ RightSlope 2.400
1125
+ End
1126
+ Key 8
1127
+ Frame 9
1128
+ Value -167.852
1129
+ Interpolation linear
1130
+ LeftSlope 2.400
1131
+ RightSlope 2.400
1132
+ End
1133
+ Key 9
1134
+ Frame 10
1135
+ Value -204.873
1136
+ Interpolation linear
1137
+ LeftSlope 2.400
1138
+ RightSlope 2.400
1139
+ End
1140
+ Key 10
1141
+ Frame 11
1142
+ Value -243.476
1143
+ Interpolation linear
1144
+ LeftSlope 2.400
1145
+ RightSlope 2.400
1146
+ End
1147
+ Key 11
1148
+ Frame 12
1149
+ Value -283.122
1150
+ Interpolation linear
1151
+ LeftSlope 2.400
1152
+ RightSlope 2.400
1153
+ End
1154
+ Key 12
1155
+ Frame 13
1156
+ Value -323.603
1157
+ Interpolation linear
1158
+ LeftSlope 2.400
1159
+ RightSlope 2.400
1160
+ End
1161
+ Key 13
1162
+ Frame 14
1163
+ Value -363.877
1164
+ Interpolation linear
1165
+ LeftSlope 2.400
1166
+ RightSlope 2.400
1167
+ End
1168
+ Key 14
1169
+ Frame 15
1170
+ Value -403.745
1171
+ Interpolation linear
1172
+ LeftSlope 2.400
1173
+ RightSlope 2.400
1174
+ End
1175
+ Key 15
1176
+ Frame 16
1177
+ Value -442.452
1178
+ Interpolation linear
1179
+ LeftSlope 2.400
1180
+ RightSlope 2.400
1181
+ End
1182
+ Key 16
1183
+ Frame 17
1184
+ Value -479.465
1185
+ Interpolation linear
1186
+ LeftSlope 2.400
1187
+ RightSlope 2.400
1188
+ End
1189
+ Key 17
1190
+ Frame 18
1191
+ Value -514.017
1192
+ Interpolation linear
1193
+ LeftSlope 2.400
1194
+ RightSlope 2.400
1195
+ End
1196
+ Key 18
1197
+ Frame 19
1198
+ Value -546.078
1199
+ Interpolation linear
1200
+ LeftSlope 2.400
1201
+ RightSlope 2.400
1202
+ End
1203
+ Key 19
1204
+ Frame 20
1205
+ Value -574.581
1206
+ Interpolation linear
1207
+ LeftSlope 2.400
1208
+ RightSlope 2.400
1209
+ End
1210
+ Key 20
1211
+ Frame 21
1212
+ Value -599.005
1213
+ Interpolation linear
1214
+ LeftSlope 2.400
1215
+ RightSlope 2.400
1216
+ End
1217
+ Key 21
1218
+ Frame 22
1219
+ Value -619.337
1220
+ Interpolation linear
1221
+ LeftSlope 2.400
1222
+ RightSlope 2.400
1223
+ End
1224
+ Key 22
1225
+ Frame 23
1226
+ Value -634.525
1227
+ Interpolation linear
1228
+ LeftSlope 2.400
1229
+ RightSlope 2.400
1230
+ End
1231
+ Key 23
1232
+ Frame 24
1233
+ Value -643.700
1234
+ Interpolation linear
1235
+ LeftSlope 2.400
1236
+ RightSlope 2.400
1237
+ End
1238
+ Key 24
1239
+ Frame 25
1240
+ Value -646.937
1241
+ Interpolation linear
1242
+ LeftSlope 2.400
1243
+ RightSlope 2.400
1244
+ End
1245
+ End
1246
+ Channel bottom_left/shift/y
1247
+ Extrapolation constant
1248
+ Value 0
1249
+ KeyVersion 1
1250
+ Size 25
1251
+ Key 0
1252
+ Frame 1
1253
+ Value 0
1254
+ Interpolation linear
1255
+ LeftSlope 2.400
1256
+ RightSlope 2.400
1257
+ End
1258
+ Key 1
1259
+ Frame 2
1260
+ Value 0.994
1261
+ Interpolation linear
1262
+ LeftSlope 2.400
1263
+ RightSlope 2.400
1264
+ End
1265
+ Key 2
1266
+ Frame 3
1267
+ Value 3.361
1268
+ Interpolation linear
1269
+ LeftSlope 2.400
1270
+ RightSlope 2.400
1271
+ End
1272
+ Key 3
1273
+ Frame 4
1274
+ Value 7.742
1275
+ Interpolation linear
1276
+ LeftSlope 2.400
1277
+ RightSlope 2.400
1278
+ End
1279
+ Key 4
1280
+ Frame 5
1281
+ Value 13.021
1282
+ Interpolation linear
1283
+ LeftSlope 2.400
1284
+ RightSlope 2.400
1285
+ End
1286
+ Key 5
1287
+ Frame 6
1288
+ Value 19.789
1289
+ Interpolation linear
1290
+ LeftSlope 2.400
1291
+ RightSlope 2.400
1292
+ End
1293
+ Key 6
1294
+ Frame 7
1295
+ Value 27.657
1296
+ Interpolation linear
1297
+ LeftSlope 2.400
1298
+ RightSlope 2.400
1299
+ End
1300
+ Key 7
1301
+ Frame 8
1302
+ Value 36.224
1303
+ Interpolation linear
1304
+ LeftSlope 2.400
1305
+ RightSlope 2.400
1306
+ End
1307
+ Key 8
1308
+ Frame 9
1309
+ Value 45.782
1310
+ Interpolation linear
1311
+ LeftSlope 2.400
1312
+ RightSlope 2.400
1313
+ End
1314
+ Key 9
1315
+ Frame 10
1316
+ Value 55.834
1317
+ Interpolation linear
1318
+ LeftSlope 2.400
1319
+ RightSlope 2.400
1320
+ End
1321
+ Key 10
1322
+ Frame 11
1323
+ Value 66.290
1324
+ Interpolation linear
1325
+ LeftSlope 2.400
1326
+ RightSlope 2.400
1327
+ End
1328
+ Key 11
1329
+ Frame 12
1330
+ Value 77.196
1331
+ Interpolation linear
1332
+ LeftSlope 2.400
1333
+ RightSlope 2.400
1334
+ End
1335
+ Key 12
1336
+ Frame 13
1337
+ Value 88.134
1338
+ Interpolation linear
1339
+ LeftSlope 2.400
1340
+ RightSlope 2.400
1341
+ End
1342
+ Key 13
1343
+ Frame 14
1344
+ Value 99.255
1345
+ Interpolation linear
1346
+ LeftSlope 2.400
1347
+ RightSlope 2.400
1348
+ End
1349
+ Key 14
1350
+ Frame 15
1351
+ Value 109.906
1352
+ Interpolation linear
1353
+ LeftSlope 2.400
1354
+ RightSlope 2.400
1355
+ End
1356
+ Key 15
1357
+ Frame 16
1358
+ Value 120.357
1359
+ Interpolation linear
1360
+ LeftSlope 2.400
1361
+ RightSlope 2.400
1362
+ End
1363
+ Key 16
1364
+ Frame 17
1365
+ Value 130.373
1366
+ Interpolation linear
1367
+ LeftSlope 2.400
1368
+ RightSlope 2.400
1369
+ End
1370
+ Key 17
1371
+ Frame 18
1372
+ Value 139.944
1373
+ Interpolation linear
1374
+ LeftSlope 2.400
1375
+ RightSlope 2.400
1376
+ End
1377
+ Key 18
1378
+ Frame 19
1379
+ Value 148.321
1380
+ Interpolation linear
1381
+ LeftSlope 2.400
1382
+ RightSlope 2.400
1383
+ End
1384
+ Key 19
1385
+ Frame 20
1386
+ Value 156.412
1387
+ Interpolation linear
1388
+ LeftSlope 2.400
1389
+ RightSlope 2.400
1390
+ End
1391
+ Key 20
1392
+ Frame 21
1393
+ Value 163.269
1394
+ Interpolation linear
1395
+ LeftSlope 2.400
1396
+ RightSlope 2.400
1397
+ End
1398
+ Key 21
1399
+ Frame 22
1400
+ Value 168.378
1401
+ Interpolation linear
1402
+ LeftSlope 2.400
1403
+ RightSlope 2.400
1404
+ End
1405
+ Key 22
1406
+ Frame 23
1407
+ Value 172.379
1408
+ Interpolation linear
1409
+ LeftSlope 2.400
1410
+ RightSlope 2.400
1411
+ End
1412
+ Key 23
1413
+ Frame 24
1414
+ Value 175.328
1415
+ Interpolation linear
1416
+ LeftSlope 2.400
1417
+ RightSlope 2.400
1418
+ End
1419
+ Key 24
1420
+ Frame 25
1421
+ Value 176.295
1422
+ Interpolation linear
1423
+ LeftSlope 2.400
1424
+ RightSlope 2.400
1425
+ End
1426
+ End
1427
+ Channel bottom_left/offset/x
1428
+ Extrapolation constant
1429
+ Value 0
1430
+ End
1431
+ Channel bottom_left/offset/y
1432
+ Extrapolation constant
1433
+ Value 0
1434
+ End
1435
+ Channel bottom_right/track/x
1436
+ Extrapolation constant
1437
+ Value 960
1438
+ Colour 50 50 50
1439
+ End
1440
+ Channel bottom_right/track/y
1441
+ Extrapolation constant
1442
+ Value 540
1443
+ Colour 50 50 50
1444
+ End
1445
+ Channel bottom_right/track/width
1446
+ Extrapolation linear
1447
+ Value 15
1448
+ Colour 50 50 50
1449
+ End
1450
+ Channel bottom_right/track/height
1451
+ Extrapolation linear
1452
+ Value 15
1453
+ Colour 50 50 50
1454
+ End
1455
+ Channel bottom_right/ref/width
1456
+ Extrapolation linear
1457
+ Value 10
1458
+ Colour 50 50 50
1459
+ End
1460
+ Channel bottom_right/ref/height
1461
+ Extrapolation linear
1462
+ Value 10
1463
+ Colour 50 50 50
1464
+ End
1465
+ Channel bottom_right/ref/x
1466
+ Extrapolation constant
1467
+ Value 1174.252
1468
+ Colour 50 50 50
1469
+ KeyVersion 1
1470
+ Size 1
1471
+ Key 0
1472
+ Frame 1
1473
+ Value 1174.252
1474
+ Interpolation constant
1475
+ LeftSlope 2.400
1476
+ RightSlope 2.400
1477
+ End
1478
+ End
1479
+ Channel bottom_right/ref/y
1480
+ Extrapolation constant
1481
+ Value 101.292
1482
+ Colour 50 50 50
1483
+ KeyVersion 1
1484
+ Size 1
1485
+ Key 0
1486
+ Frame 1
1487
+ Value 101.292
1488
+ Interpolation constant
1489
+ LeftSlope 2.400
1490
+ RightSlope 2.400
1491
+ End
1492
+ End
1493
+ Channel bottom_right/ref/dx
1494
+ Extrapolation constant
1495
+ Value 0
1496
+ Colour 50 50 50
1497
+ Size 2
1498
+ KeyVersion 1
1499
+ Key 0
1500
+ Frame 0
1501
+ Value 0
1502
+ ValueLock yes
1503
+ DeleteLock yes
1504
+ Interpolation constant
1505
+ End
1506
+ Key 1
1507
+ Frame 1
1508
+ Value 0
1509
+ ValueLock yes
1510
+ DeleteLock yes
1511
+ Interpolation constant
1512
+ End
1513
+ End
1514
+ Channel bottom_right/ref/dy
1515
+ Extrapolation constant
1516
+ Value 0
1517
+ Colour 50 50 50
1518
+ Size 2
1519
+ KeyVersion 1
1520
+ Key 0
1521
+ Frame 0
1522
+ Value 0
1523
+ ValueLock yes
1524
+ DeleteLock yes
1525
+ Interpolation constant
1526
+ End
1527
+ Key 1
1528
+ Frame 1
1529
+ Value 0
1530
+ ValueLock yes
1531
+ DeleteLock yes
1532
+ Interpolation constant
1533
+ End
1534
+ End
1535
+ Channel bottom_right/shift/x
1536
+ Extrapolation constant
1537
+ Value 0
1538
+ KeyVersion 1
1539
+ Size 25
1540
+ Key 0
1541
+ Frame 1
1542
+ Value 0
1543
+ Interpolation linear
1544
+ LeftSlope 2.400
1545
+ RightSlope 2.400
1546
+ End
1547
+ Key 1
1548
+ Frame 2
1549
+ Value -2.002
1550
+ Interpolation linear
1551
+ LeftSlope 2.400
1552
+ RightSlope 2.400
1553
+ End
1554
+ Key 2
1555
+ Frame 3
1556
+ Value -8.928
1557
+ Interpolation linear
1558
+ LeftSlope 2.400
1559
+ RightSlope 2.400
1560
+ End
1561
+ Key 3
1562
+ Frame 4
1563
+ Value -18.957
1564
+ Interpolation linear
1565
+ LeftSlope 2.400
1566
+ RightSlope 2.400
1567
+ End
1568
+ Key 4
1569
+ Frame 5
1570
+ Value -33.157
1571
+ Interpolation linear
1572
+ LeftSlope 2.400
1573
+ RightSlope 2.400
1574
+ End
1575
+ Key 5
1576
+ Frame 6
1577
+ Value -50.952
1578
+ Interpolation linear
1579
+ LeftSlope 2.400
1580
+ RightSlope 2.400
1581
+ End
1582
+ Key 6
1583
+ Frame 7
1584
+ Value -70.852
1585
+ Interpolation linear
1586
+ LeftSlope 2.400
1587
+ RightSlope 2.400
1588
+ End
1589
+ Key 7
1590
+ Frame 8
1591
+ Value -93.037
1592
+ Interpolation linear
1593
+ LeftSlope 2.400
1594
+ RightSlope 2.400
1595
+ End
1596
+ Key 8
1597
+ Frame 9
1598
+ Value -117.009
1599
+ Interpolation linear
1600
+ LeftSlope 2.400
1601
+ RightSlope 2.400
1602
+ End
1603
+ Key 9
1604
+ Frame 10
1605
+ Value -142.969
1606
+ Interpolation linear
1607
+ LeftSlope 2.400
1608
+ RightSlope 2.400
1609
+ End
1610
+ Key 10
1611
+ Frame 11
1612
+ Value -169.990
1613
+ Interpolation linear
1614
+ LeftSlope 2.400
1615
+ RightSlope 2.400
1616
+ End
1617
+ Key 11
1618
+ Frame 12
1619
+ Value -197.972
1620
+ Interpolation linear
1621
+ LeftSlope 2.400
1622
+ RightSlope 2.400
1623
+ End
1624
+ Key 12
1625
+ Frame 13
1626
+ Value -226.035
1627
+ Interpolation linear
1628
+ LeftSlope 2.400
1629
+ RightSlope 2.400
1630
+ End
1631
+ Key 13
1632
+ Frame 14
1633
+ Value -254.401
1634
+ Interpolation linear
1635
+ LeftSlope 2.400
1636
+ RightSlope 2.400
1637
+ End
1638
+ Key 14
1639
+ Frame 15
1640
+ Value -282.140
1641
+ Interpolation linear
1642
+ LeftSlope 2.400
1643
+ RightSlope 2.400
1644
+ End
1645
+ Key 15
1646
+ Frame 16
1647
+ Value -309.234
1648
+ Interpolation linear
1649
+ LeftSlope 2.400
1650
+ RightSlope 2.400
1651
+ End
1652
+ Key 16
1653
+ Frame 17
1654
+ Value -335.145
1655
+ Interpolation linear
1656
+ LeftSlope 2.400
1657
+ RightSlope 2.400
1658
+ End
1659
+ Key 17
1660
+ Frame 18
1661
+ Value -359.328
1662
+ Interpolation linear
1663
+ LeftSlope 2.400
1664
+ RightSlope 2.400
1665
+ End
1666
+ Key 18
1667
+ Frame 19
1668
+ Value -381.756
1669
+ Interpolation linear
1670
+ LeftSlope 2.400
1671
+ RightSlope 2.400
1672
+ End
1673
+ Key 19
1674
+ Frame 20
1675
+ Value -401.666
1676
+ Interpolation linear
1677
+ LeftSlope 2.400
1678
+ RightSlope 2.400
1679
+ End
1680
+ Key 20
1681
+ Frame 21
1682
+ Value -418.659
1683
+ Interpolation linear
1684
+ LeftSlope 2.400
1685
+ RightSlope 2.400
1686
+ End
1687
+ Key 21
1688
+ Frame 22
1689
+ Value -432.757
1690
+ Interpolation linear
1691
+ LeftSlope 2.400
1692
+ RightSlope 2.400
1693
+ End
1694
+ Key 22
1695
+ Frame 23
1696
+ Value -443.474
1697
+ Interpolation linear
1698
+ LeftSlope 2.400
1699
+ RightSlope 2.400
1700
+ End
1701
+ Key 23
1702
+ Frame 24
1703
+ Value -450.163
1704
+ Interpolation linear
1705
+ LeftSlope 2.400
1706
+ RightSlope 2.400
1707
+ End
1708
+ Key 24
1709
+ Frame 25
1710
+ Value -452.502
1711
+ Interpolation linear
1712
+ LeftSlope 2.400
1713
+ RightSlope 2.400
1714
+ End
1715
+ End
1716
+ Channel bottom_right/shift/y
1717
+ Extrapolation constant
1718
+ Value 0
1719
+ KeyVersion 1
1720
+ Size 25
1721
+ Key 0
1722
+ Frame 1
1723
+ Value 0
1724
+ Interpolation linear
1725
+ LeftSlope 2.400
1726
+ RightSlope 2.400
1727
+ End
1728
+ Key 1
1729
+ Frame 2
1730
+ Value 0.002
1731
+ Interpolation linear
1732
+ LeftSlope 2.400
1733
+ RightSlope 2.400
1734
+ End
1735
+ Key 2
1736
+ Frame 3
1737
+ Value 0.102
1738
+ Interpolation linear
1739
+ LeftSlope 2.400
1740
+ RightSlope 2.400
1741
+ End
1742
+ Key 3
1743
+ Frame 4
1744
+ Value 0.199
1745
+ Interpolation linear
1746
+ LeftSlope 2.400
1747
+ RightSlope 2.400
1748
+ End
1749
+ Key 4
1750
+ Frame 5
1751
+ Value 0.536
1752
+ Interpolation linear
1753
+ LeftSlope 2.400
1754
+ RightSlope 2.400
1755
+ End
1756
+ Key 5
1757
+ Frame 6
1758
+ Value 0.910
1759
+ Interpolation linear
1760
+ LeftSlope 2.400
1761
+ RightSlope 2.400
1762
+ End
1763
+ Key 6
1764
+ Frame 7
1765
+ Value 1.158
1766
+ Interpolation linear
1767
+ LeftSlope 2.400
1768
+ RightSlope 2.400
1769
+ End
1770
+ Key 7
1771
+ Frame 8
1772
+ Value 1.554
1773
+ Interpolation linear
1774
+ LeftSlope 2.400
1775
+ RightSlope 2.400
1776
+ End
1777
+ Key 8
1778
+ Frame 9
1779
+ Value 1.989
1780
+ Interpolation linear
1781
+ LeftSlope 2.400
1782
+ RightSlope 2.400
1783
+ End
1784
+ Key 9
1785
+ Frame 10
1786
+ Value 2.358
1787
+ Interpolation linear
1788
+ LeftSlope 2.400
1789
+ RightSlope 2.400
1790
+ End
1791
+ Key 10
1792
+ Frame 11
1793
+ Value 2.900
1794
+ Interpolation linear
1795
+ LeftSlope 2.400
1796
+ RightSlope 2.400
1797
+ End
1798
+ Key 11
1799
+ Frame 12
1800
+ Value 3.330
1801
+ Interpolation linear
1802
+ LeftSlope 2.400
1803
+ RightSlope 2.400
1804
+ End
1805
+ Key 12
1806
+ Frame 13
1807
+ Value 3.875
1808
+ Interpolation linear
1809
+ LeftSlope 2.400
1810
+ RightSlope 2.400
1811
+ End
1812
+ Key 13
1813
+ Frame 14
1814
+ Value 4.352
1815
+ Interpolation linear
1816
+ LeftSlope 2.400
1817
+ RightSlope 2.400
1818
+ End
1819
+ Key 14
1820
+ Frame 15
1821
+ Value 4.876
1822
+ Interpolation linear
1823
+ LeftSlope 2.400
1824
+ RightSlope 2.400
1825
+ End
1826
+ Key 15
1827
+ Frame 16
1828
+ Value 5.381
1829
+ Interpolation linear
1830
+ LeftSlope 2.400
1831
+ RightSlope 2.400
1832
+ End
1833
+ Key 16
1834
+ Frame 17
1835
+ Value 5.920
1836
+ Interpolation linear
1837
+ LeftSlope 2.400
1838
+ RightSlope 2.400
1839
+ End
1840
+ Key 17
1841
+ Frame 18
1842
+ Value 6.107
1843
+ Interpolation linear
1844
+ LeftSlope 2.400
1845
+ RightSlope 2.400
1846
+ End
1847
+ Key 18
1848
+ Frame 19
1849
+ Value 6.927
1850
+ Interpolation linear
1851
+ LeftSlope 2.400
1852
+ RightSlope 2.400
1853
+ End
1854
+ Key 19
1855
+ Frame 20
1856
+ Value 6.930
1857
+ Interpolation linear
1858
+ LeftSlope 2.400
1859
+ RightSlope 2.400
1860
+ End
1861
+ Key 20
1862
+ Frame 21
1863
+ Value 7.801
1864
+ Interpolation linear
1865
+ LeftSlope 2.400
1866
+ RightSlope 2.400
1867
+ End
1868
+ Key 21
1869
+ Frame 22
1870
+ Value 7.927
1871
+ Interpolation linear
1872
+ LeftSlope 2.400
1873
+ RightSlope 2.400
1874
+ End
1875
+ Key 22
1876
+ Frame 23
1877
+ Value 7.976
1878
+ Interpolation linear
1879
+ LeftSlope 2.400
1880
+ RightSlope 2.400
1881
+ End
1882
+ Key 23
1883
+ Frame 24
1884
+ Value 7.966
1885
+ Interpolation linear
1886
+ LeftSlope 2.400
1887
+ RightSlope 2.400
1888
+ End
1889
+ Key 24
1890
+ Frame 25
1891
+ Value 8.017
1892
+ Interpolation linear
1893
+ LeftSlope 2.400
1894
+ RightSlope 2.400
1895
+ End
1896
+ End
1897
+ Channel bottom_right/offset/x
1898
+ Extrapolation constant
1899
+ Value 0
1900
+ End
1901
+ Channel bottom_right/offset/y
1902
+ Extrapolation constant
1903
+ Value 0
1904
+ End
1905
+ ChannelEnd
1906
+ Tracker 0
1907
+ Active yes
1908
+ Colour
1909
+ Red 0
1910
+ Green 100
1911
+ Blue 0
1912
+ FixedRef yes
1913
+ FixedX no
1914
+ FixedY no
1915
+ Tolerance 100
1916
+ Tracker 1
1917
+ Active yes
1918
+ Colour
1919
+ Red 0
1920
+ Green 100
1921
+ Blue 0
1922
+ FixedRef yes
1923
+ FixedX no
1924
+ FixedY no
1925
+ Tolerance 100
1926
+ Tracker 2
1927
+ Active yes
1928
+ Colour
1929
+ Red 0
1930
+ Green 100
1931
+ Blue 0
1932
+ FixedRef yes
1933
+ FixedX no
1934
+ FixedY no
1935
+ Tolerance 100
1936
+ Tracker 3
1937
+ Active yes
1938
+ Colour
1939
+ Red 0
1940
+ Green 100
1941
+ Blue 0
1942
+ FixedRef yes
1943
+ FixedX no
1944
+ FixedY no
1945
+ Tolerance 100
1946
+ End