diff --git a/Assets/Scripts/InteractionEngine/FactHandling/FactOrganizer.cs b/Assets/Scripts/InteractionEngine/FactHandling/FactOrganizer.cs index d7cd3b8966fe13f6cbde385e18cdbcd48a102cd9..8ddfcbc67c92c30bb7fbd42302dd9c2d358c56d3 100644 --- a/Assets/Scripts/InteractionEngine/FactHandling/FactOrganizer.cs +++ b/Assets/Scripts/InteractionEngine/FactHandling/FactOrganizer.cs @@ -11,6 +11,7 @@ using UnityEngine.InputSystem.Utilities; using UnityEngine.Rendering.VirtualTexturing; using System.Collections.ObjectModel; +using System.Xml.Linq; //TODO: MMT: move some functionality there //TODO: consequent!= samestep != dependent @@ -20,7 +21,7 @@ /// Organizes (insertion/ deletion / etc. operations) and sepperates <see cref="Fact">Fact</see> spaces. /// Keeps track of insertion/ deletion actions for <see cref="undo"/> and <see cref="redo"/>. /// </summary> -public class FactOrganizer : IJSONsavable<FactOrganizer> +public class FactOrganizer : IJSONsavable<FactOrganizer>, IDisposable { /// <summary> /// Contains Immutable <see cref="Fact.Id"/>s; @@ -46,18 +47,14 @@ public class FactOrganizer : IJSONsavable<FactOrganizer> /// - <c>Key</c>: <see cref="Fact.Id"/> /// - <c>Value</c>: <see cref="Fact"/> /// </summary> + [JsonIgnore] protected IReadOnlyDictionary<string, Fact> MyFactSpace { get => GlobalFactDictionary.MyFactSpace(this); } [JsonProperty] - protected IReadOnlyDictionary<string, Fact> JsonFactSpace - { - get => MyFactSpace; - set => _JsonFactSpace = value; - } - private IReadOnlyDictionary<string, Fact> _JsonFactSpace; + private IReadOnlyDictionary<string, Fact> JsonFactSpace = null; //null! /// <summary> /// - <c>Key</c>: <see cref="Fact.Id"/> @@ -218,25 +215,26 @@ public stepnote(FactOrganizer that, string Id, bool samestep, bool creation, Gad if (new_gadget = !that.GadgetWorkflowDict.ContainsKey(gadget)) { that.GadgetWorkflowDict.Add(gadget, (that.marker, that.marker)); + that.WorkflowGadgetDict.Remove(that.marker); that.WorkflowGadgetDict.Add(that.marker, gadget); } - var gadget_entree = that.GadgetWorkflowDict[gadget]; - - this.gadget_rank = gadget_entree.first_occurrence; + var (gadget_first_occurrence, gadget_last_occurrence) = that.GadgetWorkflowDict[gadget]; + this.gadget_rank = gadget_first_occurrence; // check for new USE of gadget bool set_workflow = !samestep || new_gadget || prev.gadget_rank != this.gadget_rank - || gadget_entree.last_occurrence >= that.marker; + || gadget_last_occurrence >= that.marker; - stepnote gadget_prev = set_workflow ? default /*unused then*/ - : that.Workflow[gadget_entree.last_occurrence]; + stepnote gadget_prev = set_workflow + ? default /*unused then*/ + : that.Workflow[gadget_last_occurrence]; if (set_workflow || gadget_prev.GadgetFlow == null || !gadget_prev.GadgetFlow.SequenceEqual(gadget.Workflow.ToArray())) { this.GadgetFlow = gadget.Workflow.ToArray(); - that.GadgetWorkflowDict[gadget] = (gadget_entree.first_occurrence, that.marker); + that.GadgetWorkflowDict[gadget] = (gadget_first_occurrence, that.marker); } } } @@ -296,9 +294,12 @@ public FactOrganizer() ~FactOrganizer() { - GlobalFactDictionary.FactSpaceDelete(this); + Dispose(); } + public void Dispose() + => GlobalFactDictionary.FactSpaceDelete(this); + /// <summary> /// Standard Constructor for empty, ready to use <see cref="FactOrganizer"/> /// </summary> @@ -321,9 +322,11 @@ public static T ReInitializeFactOrganizer<T>(T source, bool invoke, out Dictiona where T : FactOrganizer, new() { // TODO: other strategy needed when MMT save/load supported - IReadOnlyDictionary<string, Fact> source_Dict = source._JsonFactSpace ?? source.MyFactSpace; - - Dictionary<string, string> _old_to_new = new(); + bool not_from_JSON = source.JsonFactSpace == null; + + Dictionary<string, string> _old_to_new = not_from_JSON + ? source.MyFactSpace.Keys.ToDictionary(id => id) + : new(); // initiate T target = new() @@ -336,16 +339,8 @@ public static T ReInitializeFactOrganizer<T>(T source, bool invoke, out Dictiona // work ExposedSolutionFacts foreach (var element in source.ImmutableFacts) { - try - { - Fact ExposedFact = ReInitializeFact(source_Dict[element]); - target.Add(ExposedFact, out _, false, null, null, isImmutable: true); - } - catch (Exception ex) - { - Debug.LogWarningFormat("Could not Instantiate Immutable Fact: {0}", source_Dict[element]); - Debug.LogException(ex); - } + Fact ExposedFact = ReInitializeFact(element); + target.Add(ExposedFact, out _, false, null, null, isImmutable: true); } // work Workflow @@ -366,7 +361,7 @@ public static T ReInitializeFactOrganizer<T>(T source, bool invoke, out Dictiona if (s_step.creation) // Add { - Fact add = ReInitializeFact(source_Dict[s_step.Id]); + Fact add = ReInitializeFact(s_step.Id); target.Add(add, out _, s_step.samestep, used_gadget, s_step.scroll_label); } else if (_old_to_new.TryGetValue(s_step.Id, out string remove_Id)) @@ -385,18 +380,30 @@ public static T ReInitializeFactOrganizer<T>(T source, bool invoke, out Dictiona target.undo(); target.soft_resetted = source.soft_resetted; + + //if(not_from_JSON) + // source.Dispose(); + old_to_new = _old_to_new; return target; - Fact ReInitializeFact(Fact old_Fact) + Fact ReInitializeFact(string old_id) { - if (_old_to_new.TryGetValue(old_Fact.Id, out string newId)) + if (not_from_JSON) + return source.MyFactSpace[old_id]; // is in GlobalFactDictionary.Facts + + if (_old_to_new.TryGetValue(old_id, out string newId)) return target[newId]; - Fact new_Fact = old_Fact.GetType() - .GetConstructor(new Type[] { old_Fact.GetType(), typeof(Dictionary<string, string>), typeof(FactOrganizer) }) - .Invoke(new object[] { old_Fact, _old_to_new, target }) - as Fact; + Fact old_Fact = source.JsonFactSpace[old_id]; + + if (!old_Fact.getDependentFactIds().All(id => _old_to_new.ContainsKey(id))) + { + Debug.LogWarningFormat("Could not Instantiate Immutable Fact: {0}", old_Fact); + return null; + } + + Fact new_Fact = old_Fact.ReInitializeMe(_old_to_new, target); _old_to_new.Add(old_Fact.Id, new_Fact.Id); @@ -571,7 +578,7 @@ public string Add(Fact value, out bool exists, bool samestep, Gadget gadget, str string key; #pragma warning restore IDE0018 // Inlinevariablendeklaration - if (exists = FindEquivalent(value, out key, out bool exact)) + if (exists = FindEquivalent(value, out key, out bool _)) { if (exists = MetaInf[key].active) //Fact in Scene? // desired outcome already achieved @@ -843,6 +850,12 @@ public void fastforward() FactOrganizer IJSONsavable<FactOrganizer>._IJPostProcess(FactOrganizer raw_payload) => raw_payload == null ? raw_payload : ReInitializeFactOrganizer<FactOrganizer>(raw_payload, false, out _); + FactOrganizer IJSONsavable<FactOrganizer>._IJPreProcess(FactOrganizer payload) + { + payload.JsonFactSpace = payload.MyFactSpace; + return payload; + } + /// <summary> /// Call this after assigning a stored instance in an empty world, that was not drawn. /// <see cref="redo">Redoes</see>/ draws everything from <see cref="marker"/> = 0 to <paramref name="draw_all"/><c> ? worksteps : backlog</c> @@ -977,20 +990,21 @@ public IEnumerable<string> GetUsedScrolls() public int GetNumberOfFacts() => MyFactSpace.Count; + protected static class GlobalFactDictionary { /// <summary> /// - <c>Key</c>: <see cref="Fact.Id"/> /// - <c>Value</c>: <see cref="Fact"/> /// </summary> - private static Dictionary<string, Fact> FactDict = new(); + private static readonly Dictionary<string, Fact> FactDict = new(); public static IReadOnlyDictionary<string, Fact> Facts { get => FactDict; } - private static Dictionary<string, uint> FactReferences = new(); + private static readonly Dictionary<string, uint> FactReferences = new(); - private static Dictionary<FactOrganizer, Dictionary<string, Fact>> FactSpaces = new(); + private static readonly Dictionary<FactOrganizer, Dictionary<string, Fact>> FactSpaces = new(); public static IReadOnlyDictionary<string, Fact> MyFactSpace(FactOrganizer me) => FactSpaces[me]; diff --git a/Assets/Scripts/InteractionEngine/FactHandling/Facts/AbstractAngleFact.cs b/Assets/Scripts/InteractionEngine/FactHandling/Facts/AbstractAngleFact.cs index b1c2c1e9e82970f37a917620d3ece79fa95bfbc7..75e93a3108e227522d4962162179891f5af13027 100644 --- a/Assets/Scripts/InteractionEngine/FactHandling/Facts/AbstractAngleFact.cs +++ b/Assets/Scripts/InteractionEngine/FactHandling/Facts/AbstractAngleFact.cs @@ -49,7 +49,7 @@ protected AbstractAngleFact(string pid1, string pid2, string pid3, FactOrganizer this.Pid2 = pid2; this.Pid3 = pid3; - RecalulateTransform(); + RecalculateTransform(); } /// <summary>\copydoc AbstractAngleFact.AbstractAngleFact(string, string, string, FactOrganizer)</summary> @@ -68,7 +68,7 @@ public override Boolean hasDependentFacts() public override string[] getDependentFactIds() => new string[] { Pid1, Pid2, Pid3 }; - protected override void RecalulateTransform() + protected override void RecalculateTransform() { Position = Point2.Position; { //Rotation @@ -120,15 +120,6 @@ public class AngleFact : AbstractAngleFactWrappedCRTP<AngleFact> /// <summary> \copydoc Fact.Fact </summary> public AngleFact() : base() { } - /// <summary> - /// Copies <paramref name="fact"/> by initiating new MMT %Fact. - /// </summary> - /// <param name="fact">Fact to be copied</param> - /// <param name="old_to_new"><c>Dictionary</c> mapping <paramref name="fact"/>.<see cref="getDependentFactIds"/> in <paramref name="fact"/>.<see cref="Fact._Facts"/> to corresponding <see cref="Fact.Id"/> in <paramref name="organizer"/> </param> - /// <param name="organizer">sets <see cref="_Facts"/></param> - public AngleFact(AngleFact fact, Dictionary<string, string> old_to_new, FactOrganizer organizer) - : this(old_to_new[fact.Pid1], old_to_new[fact.Pid2], old_to_new[fact.Pid3], organizer) { } - /// <summary> /// Standard Constructor: /// Initiates <see cref="Pid1"/>, <see cref="Pid2"/>, <see cref="Pid3"/>, <see cref="is_right_angle"/>, <see cref="Fact._URI"/> and creates MMT %Fact Server-Side @@ -229,6 +220,9 @@ public override GameObject instantiateDisplay(GameObject prefab, Transform trans /// \copydoc Fact.Equivalent(Fact, Fact) protected override bool EquivalentWrapped(AngleFact f1, AngleFact f2) => DependentFactsEquivalent(f1, f2); + + protected override Fact _ReInitializeMe(Dictionary<string, string> old_to_new, FactOrganizer organizer) + => new AngleFact(old_to_new[this.Pid1], old_to_new[this.Pid2], old_to_new[this.Pid3], organizer); } /// <summary> @@ -242,15 +236,6 @@ public class RightAngleFact : AbstractAngleFactWrappedCRTP<RightAngleFact> /// <summary> \copydoc Fact.Fact </summary> public RightAngleFact() : base() { } - /// <summary> - /// Copies <paramref name="fact"/> by initiating new MMT %Fact. - /// </summary> - /// <param name="fact">Fact to be copied</param> - /// <param name="old_to_new"><c>Dictionary</c> mapping <paramref name="fact"/>.<see cref="getDependentFactIds"/> in <paramref name="fact"/>.<see cref="Fact._Facts"/> to corresponding <see cref="Fact.Id"/> in <paramref name="organizer"/> </param> - /// <param name="organizer">sets <see cref="_Facts"/></param> - public RightAngleFact(RightAngleFact fact, Dictionary<string, string> old_to_new, FactOrganizer organizer) - : this(old_to_new[fact.Pid1], old_to_new[fact.Pid2], old_to_new[fact.Pid3], organizer) { } - /// <summary> /// Standard Constructor: /// Initiates <see cref="Pid1"/>, <see cref="Pid2"/>, <see cref="Pid3"/>, <see cref="is_right_angle"/>, <see cref="Fact._URI"/> and creates MMT %Fact Server-Side @@ -347,4 +332,7 @@ public override GameObject instantiateDisplay(GameObject prefab, Transform trans /// \copydoc Fact.Equivalent(Fact, Fact) protected override bool EquivalentWrapped(RightAngleFact f1, RightAngleFact f2) => DependentFactsEquivalent(f1, f2); + + protected override Fact _ReInitializeMe(Dictionary<string, string> old_to_new, FactOrganizer organizer) + => new RightAngleFact(old_to_new[this.Pid1], old_to_new[this.Pid2], old_to_new[this.Pid3], organizer); } \ No newline at end of file diff --git a/Assets/Scripts/InteractionEngine/FactHandling/Facts/AbstractLineFact.cs b/Assets/Scripts/InteractionEngine/FactHandling/Facts/AbstractLineFact.cs index d39acd0fbfcb9f0314f44155bedaf5ba3a36131c..50347056d4e6286b63e9960ebd08721635e9bdff 100644 --- a/Assets/Scripts/InteractionEngine/FactHandling/Facts/AbstractLineFact.cs +++ b/Assets/Scripts/InteractionEngine/FactHandling/Facts/AbstractLineFact.cs @@ -39,17 +39,6 @@ protected AbstractLineFact() : base() Dir = Vector3.zero; } - /// <summary> - /// Copies <paramref name="fact"/> by initiating new MMT %Fact. - /// </summary> - /// <param name="fact">Fact to be copied</param> - /// <param name="old_to_new"><c>Dictionary</c> mapping <paramref name="fact"/>.<see cref="getDependentFactIds"/> in <paramref name="fact"/>.<see cref="Fact._Facts"/> to corresponding <see cref="Fact.Id"/> in <paramref name="organizer"/> </param> - /// <param name="organizer">sets <see cref="_Facts"/></param> - protected AbstractLineFact(AbstractLineFact fact, Dictionary<string, string> old_to_new, FactOrganizer organizer) : base(fact, organizer) - { - set_public_members(old_to_new[fact.Pid1], old_to_new[fact.Pid2]); - } - /// <summary> /// Standard Constructor /// </summary> @@ -87,10 +76,10 @@ private void set_public_members(string pid1, string pid2) this.Dir = diff.normalized; this.Distance = diff.magnitude; - RecalulateTransform(); + RecalculateTransform(); } - protected override void RecalulateTransform() + protected override void RecalculateTransform() { Position = Vector3.Lerp(Point1.Point, Point2.Point, 0.5f); Rotation = Quaternion.LookRotation(Dir, Vector3.up); @@ -115,9 +104,6 @@ public abstract class AbstractLineFactWrappedCRTP<T> : AbstractLineFact where T /// <summary>\copydoc Fact.Fact</summary> protected AbstractLineFactWrappedCRTP() : base() { } - /// <summary>\copydoc AbstractLineFact.AbstractLineFact(AbstractLineFact, Dictionary{string, string}, FactOrganizer)</summary> - protected AbstractLineFactWrappedCRTP(AbstractLineFactWrappedCRTP<T> fact, Dictionary<string, string> old_to_new, FactOrganizer organizer) : base(fact, old_to_new, organizer) { } - /// <summary>\copydoc AbstractLineFact.AbstractLineFact(string, string, FactOrganizer)</summary> protected AbstractLineFactWrappedCRTP(string pid1, string pid2, FactOrganizer organizer) : base(pid1, pid2, organizer) { } @@ -144,10 +130,6 @@ public class LineFact : AbstractLineFactWrappedCRTP<LineFact> /// <summary> \copydoc Fact.Fact </summary> public LineFact() : base() { } - /// <summary> \copydoc AbstractLineFact.AbstractLineFact(AbstractLineFact, Dictionary<string, string>, FactOrganizer) </summary> - public LineFact(LineFact fact, Dictionary<string, string> old_to_new, FactOrganizer organizer) : base(fact, old_to_new, organizer) - => init(old_to_new[fact.Pid1], old_to_new[fact.Pid2]); - /// <summary> \copydoc AbstractLineFact.AbstractLineFact(string, string, string, FactOrganizer) </summary> public LineFact(string pid1, string pid2, string backendURI, FactOrganizer organizer) : base(pid1, pid2, backendURI, organizer) => _ = this.Label; @@ -211,6 +193,9 @@ public override GameObject instantiateDisplay(GameObject prefab, Transform trans /// \copydoc Fact.Equivalent(Fact, Fact) protected override bool EquivalentWrapped(LineFact f1, LineFact f2) => DependentFactsEquivalent(f1, f2); + + protected override Fact _ReInitializeMe(Dictionary<string, string> old_to_new, FactOrganizer organizer) + => new LineFact(old_to_new[this.Pid1], old_to_new[this.Pid2], organizer); } /// <summary> @@ -225,10 +210,6 @@ public class RayFact : AbstractLineFactWrappedCRTP<RayFact> /// <summary> \copydoc Fact.Fact </summary> public RayFact() : base() { } - /// <summary> \copydoc AbstractLineFact.AbstractLineFact(AbstractLineFact, Dictionary<string, string>, FactOrganizer) </summary> - public RayFact(RayFact fact, Dictionary<string, string> old_to_new, FactOrganizer organizer) : base(fact, old_to_new, organizer) - => init(old_to_new[fact.Pid1], old_to_new[fact.Pid2]); - /// <summary> \copydoc AbstractLineFact.AbstractLineFact(string, string, string, FactOrganizer) </summary> public RayFact(string pid1, string pid2, string backendURI, FactOrganizer organizer) : base(pid1, pid2, backendURI, organizer) => _ = this.Label; @@ -257,9 +238,9 @@ private void init(string pid1, string pid2) ParsingDictionary.parseTermsToId[df.ToString()] = this._URI; } - protected override void RecalulateTransform() + protected override void RecalculateTransform() { - base.RecalulateTransform(); + base.RecalculateTransform(); LocalScale = new Vector3(1, 1, 2048); } @@ -308,4 +289,7 @@ protected override bool EquivalentWrapped(RayFact f1, RayFact f2) return Math3d.IsPointApproximatelyOnLine(f1.Point1.Point, f1.Dir, f2.Point1.Point) && Math3d.IsPointApproximatelyOnLine(f1.Point1.Point, f1.Dir, f2.Point2.Point); } + + protected override Fact _ReInitializeMe(Dictionary<string, string> old_to_new, FactOrganizer organizer) + => new RayFact(old_to_new[this.Pid1], old_to_new[this.Pid2], organizer); } diff --git a/Assets/Scripts/InteractionEngine/FactHandling/Facts/Fact.cs b/Assets/Scripts/InteractionEngine/FactHandling/Facts/Fact.cs index 4a83b23d3c47ec909c800be8e588697c41dc402b..bf92fb2fac38d9541bd71acb379475e1635b6c59 100644 --- a/Assets/Scripts/InteractionEngine/FactHandling/Facts/Fact.cs +++ b/Assets/Scripts/InteractionEngine/FactHandling/Facts/Fact.cs @@ -118,9 +118,9 @@ public static bool sendAdd(string path, string body, out string uri) [JsonSubtypes.KnownSubType(typeof(ParallelLineFact), nameof(ParallelLineFact))] [JsonSubtypes.KnownSubType(typeof(OnCircleFact), nameof(OnCircleFact))] [JsonSubtypes.KnownSubType(typeof(AngleCircleLineFact), nameof(AngleCircleLineFact))] +[JsonSubtypes.KnownSubType(typeof(OrthogonalCircleLineFact), nameof(OrthogonalCircleLineFact))] [JsonSubtypes.KnownSubType(typeof(AreaCircleFact), nameof(AreaCircleFact))] [JsonSubtypes.KnownSubType(typeof(RadiusFact), nameof(RadiusFact))] -[JsonSubtypes.KnownSubType(typeof(OrthogonalCircleLineFact), nameof(OrthogonalCircleLineFact))] [JsonSubtypes.KnownSubType(typeof(ConeVolumeFact), nameof(ConeVolumeFact))] [JsonSubtypes.KnownSubType(typeof(TruncatedConeVolumeFact), nameof(TruncatedConeVolumeFact))] [JsonSubtypes.KnownSubType(typeof(RightAngleFact), nameof(RightAngleFact))] @@ -129,7 +129,7 @@ public static bool sendAdd(string path, string body, out string uri) [JsonSubtypes.KnownSubType(typeof(EqualCirclesFact), nameof(EqualCirclesFact))] [JsonSubtypes.KnownSubType(typeof(UnEqualCirclesFact), nameof(UnEqualCirclesFact))] [JsonSubtypes.KnownSubType(typeof(AttachedPositionFunction), nameof(AttachedPositionFunction))] -//[JsonSubtypes.KnownSubType(typeof(FunctionFact<T0, TResult>), "FunctionFact<T0, TResult>")] //TODO: generics? +//[JsonSubtypes.KnownSubType(typeof(FunctionFact<T0, TResult>), "FunctionFact<T0, TResult>")] //TODO: generics? => nameof doesnot work (generic agnostic) [JsonSubtypes.KnownSubType(typeof(FunctionFact<float, float>), "FunctionFact<System.Single, System.Single>")] [JsonSubtypes.KnownSubType(typeof(FunctionFactFloat<Vector3>), "FunctionFact<System.Single, UnityEngine.Vector3>")] public abstract class Fact @@ -145,7 +145,7 @@ public abstract class Fact /// Collection of <c>Type</c>s of *all* available <see cref="Fact"/>s to choose from. /// </summary> [JsonIgnore] - public static readonly Type[] Types = TypeExtensions<Fact>.UAssemblyInheritenceTypes; // Assembly.GetExecutingAssembly().GetTypes().Where(typeof(Fact).IsAssignableFrom).ToArray(); + public static readonly Type[] Types = TypeExtensions<Fact>.UAssemblyInheritenceTypes; /// <value> /// [ClassName] for JSON de-/serialization. @@ -177,12 +177,20 @@ public string Label { get { // in case of renamed dependables - return (_Facts.GetNumberOfFacts() == 0 && this is not PointFact) // JsonSerialization toggle && allow first (Point)Fact to be created + return _Facts == null // JsonSerialization toggle (_Facts.GetNumberOfFacts() == 0 && this is not PointFact) // JsonSerialization toggle && allow first (Point)Fact to be created || (hasCustomLabel && _CustomLabel != null) ? _CustomLabel : generateLabel(); } - set { rename(value); } + set { + if(_Facts == null) // JsonSerialization toggle) + { + _CustomLabel = value; + LabelId = -LabelId; + return; + } + rename(value); + } } /// <value> @@ -209,11 +217,58 @@ public string Label protected FactOrganizer _Facts; [JsonIgnore] - public Vector3 Position { get; protected set; } = Vector3.zero; + bool ForceRecalculateTransform = true; + [JsonIgnore] - public Quaternion Rotation { get; protected set; } = Quaternion.identity; + public Vector3 Position + { + get + { + if (ForceRecalculateTransform) + RecalculateTransform(); + return _Position; + } + protected set + { + ForceRecalculateTransform = false; + _Position = value; + } + } + private Vector3 _Position; + + [JsonIgnore] + public Quaternion Rotation + { + get + { + if (ForceRecalculateTransform) + RecalculateTransform(); + return _Rotation; + } + protected set + { + ForceRecalculateTransform = false; + _Rotation = value; + } + } + private Quaternion _Rotation; + [JsonIgnore] - public Vector3 LocalScale { get; protected set; } = Vector3.one; + public Vector3 LocalScale + { + get + { + if (ForceRecalculateTransform) + RecalculateTransform(); + return _LocalScale; + } + protected set + { + ForceRecalculateTransform = false; + _LocalScale = value; + } + } + private Vector3 _LocalScale; /// <summary> @@ -222,7 +277,7 @@ public string Label /// </summary> protected Fact() { - this._Facts = new FactOrganizer(); + this._Facts = null; // new FactOrganizer(); LabelId = 0; s_type = this.GetType().Name; @@ -235,21 +290,25 @@ protected Fact() protected Fact(FactOrganizer organizer) : this() { this._Facts = organizer; - LabelId = 0; } /// <summary> /// Copies <paramref name="fact"/> by initiating new MMT %Fact. /// </summary> /// <param name="fact">Fact to be copied</param> + /// <param name="old_to_new"><c>Dictionary</c> mapping <paramref name="fact"/>.<see cref="getDependentFactIds"/> in <paramref name="fact"/>.<see cref="Fact._Facts"/> to corresponding <see cref="Fact.Id"/> in <paramref name="organizer"/> </param> /// <param name="organizer"><see cref="_Facts"/></param> - protected Fact(Fact fact, FactOrganizer organizer) : this(organizer) + public Fact ReInitializeMe(Dictionary<string, string> old_to_new, FactOrganizer organizer) { - LabelId = fact.LabelId; + Fact ret = _ReInitializeMe(old_to_new, organizer); - if (hasCustomLabel) - _CustomLabel = fact.Label; + ret.LabelId = this.LabelId; + if (ret.hasCustomLabel) + ret._CustomLabel = this.Label; + + return ret; } + protected abstract Fact _ReInitializeMe(Dictionary<string, string> old_to_new, FactOrganizer organizer); /// <summary> /// Assignes a custom <see cref="Label"/>, if <paramref name="newLabel"/> is not yet taken; @@ -301,7 +360,7 @@ public bool rename(string newLabel) // TODO: set Representation here instead of ... public abstract GameObject instantiateDisplay(GameObject prefab, Transform transform); - protected abstract void RecalulateTransform(); + protected abstract void RecalculateTransform(); /// <summary> /// Frees ressources e.g. <see cref="Label"/> and will eventually delete %Fact Server-Side in far-near future when feature is supported. @@ -408,9 +467,6 @@ protected FactWrappedCRTP() : base() { } /// <summary>\copydoc Fact.Fact(FactOrganizer)</summary> protected FactWrappedCRTP(FactOrganizer organizer) : base(organizer) { } - /// <summary>\copydoc Fact.Fact(Fact, FactOrganizer)</summary> - protected FactWrappedCRTP(FactWrappedCRTP<T> fact, FactOrganizer organizer) : base(fact, organizer) { } - /// \copydoc Fact.Equivalent(Fact) public override bool Equivalent(Fact f2) => Equivalent(this, f2); @@ -449,15 +505,6 @@ public PointFact() : base() this.Normal = Vector3.zero; } - /// <summary> - /// Copies <paramref name="fact"/> by initiating new MMT %Fact. - /// </summary> - /// <param name="fact">Fact to be copied</param> - /// <param name="old_to_new"><c>Dictionary</c> mapping <paramref name="fact"/>.<see cref="getDependentFactIds"/> in <paramref name="fact"/>.<see cref="Fact._Facts"/> to corresponding <see cref="Fact.Id"/> in <paramref name="organizer"/> </param> - /// <param name="organizer">sets <see cref="_Facts"/></param> - public PointFact(PointFact fact, Dictionary<string, string> old_to_new, FactOrganizer organizer) : base(fact, organizer) - => init(fact.Point, fact.Normal); - /// <summary> /// Standard Constructor /// </summary> @@ -477,7 +524,7 @@ private void init(Vector3 P, Vector3 N) this.Point = P; this.Normal = N; - RecalulateTransform(); + RecalculateTransform(); SOMDoc tp = new OMS(MMT_OMS_URI.Point); SOMDoc df = new OMA( @@ -494,7 +541,7 @@ private void init(Vector3 P, Vector3 N) ParsingDictionary.parseTermsToId[df.ToString()] = _URI; } - protected override void RecalulateTransform() + protected override void RecalculateTransform() { Position = Point; Rotation = Quaternion.LookRotation(Normal); @@ -516,7 +563,7 @@ public PointFact(float a, float b, float c, string uri, FactOrganizer organizer) this._URI = uri; _ = this.Label; - RecalulateTransform(); + RecalculateTransform(); } /// \copydoc Fact.parseFact(Scroll.ScrollFact) @@ -562,6 +609,9 @@ public override int GetHashCode() /// \copydoc Fact.Equivalent(Fact, Fact) protected override bool EquivalentWrapped(PointFact f1, PointFact f2) => Math3d.IsApproximatelyEqual(f1.Point, f2.Point); + + protected override Fact _ReInitializeMe(Dictionary<string, string> old_to_new, FactOrganizer organizer) + => new PointFact(this.Point, this.Normal, organizer); } /// <summary> @@ -586,15 +636,6 @@ public OnLineFact() : base() this.Rid = null; } - /// <summary> - /// Copies <paramref name="fact"/> by initiating new MMT %Fact. - /// </summary> - /// <param name="fact">Fact to be copied</param> - /// <param name="old_to_new"><c>Dictionary</c> mapping <paramref name="fact"/>.<see cref="getDependentFactIds"/> in <paramref name="fact"/>.<see cref="Fact._Facts"/> to corresponding <see cref="Fact.Id"/> in <paramref name="organizer"/> </param> - /// <param name="organizer">sets <see cref="_Facts"/></param> - public OnLineFact(OnLineFact fact, Dictionary<string, string> old_to_new, FactOrganizer organizer) : base(fact, organizer) - => init(old_to_new[fact.Pid], old_to_new[fact.Rid]); - /// <summary> /// Standard Constructor /// </summary> @@ -614,7 +655,7 @@ private void init(string pid, string rid) this.Pid = pid; this.Rid = rid; - RecalulateTransform(); + RecalculateTransform(); SOMDoc tp = new OMA( new OMS(MMT_OMS_URI.Ded), @@ -632,7 +673,7 @@ private void init(string pid, string rid) AddFactResponse.sendAdd(mmtDecl, out this._URI); } - protected override void RecalulateTransform() + protected override void RecalculateTransform() { Position = Point.Position; { //Rotation @@ -666,7 +707,7 @@ public OnLineFact(string pid, string rid, string uri, FactOrganizer organizer) : this._URI = uri; _ = this.Label; - RecalulateTransform(); + RecalculateTransform(); } /// \copydoc Fact.parseFact(Scroll.ScrollFact) @@ -713,6 +754,9 @@ public override GameObject instantiateDisplay(GameObject prefab, Transform trans protected override bool EquivalentWrapped(OnLineFact f1, OnLineFact f2) => DependentFactsEquivalent(f1, f2); + + protected override Fact _ReInitializeMe(Dictionary<string, string> old_to_new, FactOrganizer organizer) + => new OnLineFact(old_to_new[this.Pid], old_to_new[this.Rid], organizer); } /// <summary> @@ -738,17 +782,6 @@ public ParallelLineFact() : base() this.Lid2 = null; } - /// <summary> - /// Copies <paramref name="fact"/> by initiating new MMT %Fact. - /// </summary> - /// <param name="fact">Fact to be copied</param> - /// <param name="old_to_new"><c>Dictionary</c> mapping <paramref name="fact"/>.<see cref="getDependentFactIds"/> in <paramref name="fact"/>.<see cref="Fact._Facts"/> to corresponding <see cref="Fact.Id"/> in <paramref name="organizer"/> </param> - /// <param name="organizer">sets <see cref="_Facts"/></param> - public ParallelLineFact(ParallelLineFact fact, Dictionary<string, string> old_to_new, FactOrganizer organizer) : base(fact, organizer) - { - init(old_to_new[fact.Lid1], old_to_new[fact.Lid2]); - } - /// <summary> /// Standard Constructor /// </summary> @@ -774,7 +807,7 @@ private void init(string lid1, string lid2) AddFactResponse.sendAdd(mmtDecl, out this._URI); } - protected override void RecalulateTransform() { } + protected override void RecalculateTransform() { } /// <summary> /// Bypasses initialization of new MMT %Fact by using existend URI, _which is not checked for existence_. @@ -791,7 +824,7 @@ public ParallelLineFact(string Lid1, string Lid2, string backendURI, FactOrganiz this._URI = backendURI; _ = this.Label; - RecalulateTransform(); + RecalculateTransform(); } /// \copydoc Fact.parseFact(Scroll.ScrollFact) @@ -885,8 +918,11 @@ public override GameObject instantiateDisplay(GameObject prefab, Transform trans } /// \copydoc Fact.Equivalent(Fact, Fact) - protected override bool EquivalentWrapped(ParallelLineFact f1, ParallelLineFact f2) + protected override bool EquivalentWrapped(ParallelLineFact f1, ParallelLineFact f2) => DependentFactsEquivalent(f1, f2); + + protected override Fact _ReInitializeMe(Dictionary<string, string> old_to_new, FactOrganizer organizer) + => new ParallelLineFact(old_to_new[this.Lid1], old_to_new[this.Lid2], organizer); } /// <summary> @@ -918,15 +954,6 @@ public CircleFact() : base() this.radius = 0; } - /// <summary> - /// Copies <paramref name="fact"/> by initiating new MMT %Fact. - /// </summary> - /// <param name="fact">Fact to be copied</param> - /// <param name="old_to_new"><c>Dictionary</c> mapping <paramref name="fact"/>.<see cref="getDependentFactIds"/> in <paramref name="fact"/>.<see cref="Fact._Facts"/> to corresponding <see cref="Fact.Id"/> in <paramref name="organizer"/> </param> - /// <param name="organizer">sets <see cref="_Facts"/></param> - public CircleFact(CircleFact fact, Dictionary<string, string> old_to_new, FactOrganizer organizer) : base(fact, organizer) - => init(old_to_new[fact.Pid1], old_to_new[fact.Pid2], fact.radius, fact.normal); - /// <summary> /// Standard Constructor /// </summary> @@ -953,13 +980,13 @@ private void init(string pid1, string pid2, float radius, Vector3 normal) this.radius = radius; this.normal = normal; - RecalulateTransform(); + RecalculateTransform(); MMTDeclaration mmtDecl = generateCircleFactDeclaration(pid1, pid2, radius, normal); AddFactResponse.sendAdd(mmtDecl, out this._URI); } - protected override void RecalulateTransform() + protected override void RecalculateTransform() { Position = Point1.Position; Rotation = Quaternion.LookRotation(normal); @@ -986,7 +1013,7 @@ public CircleFact(string Pid1, string Pid2, float radius, Vector3 normal, string this._URI = backendURI; _ = this.Label; - RecalulateTransform(); + RecalculateTransform(); } /// <summary> @@ -1122,10 +1149,13 @@ public override GameObject instantiateDisplay(GameObject prefab, Transform trans } /// \copydoc Fact.Equivalent(Fact, Fact) - protected override bool EquivalentWrapped(CircleFact f1, CircleFact f2) + protected override bool EquivalentWrapped(CircleFact f1, CircleFact f2) => DependentFactsEquivalent(f1, f2) && Math3d.IsApproximatelyEqual(f1.normal, f2.normal) && f1.radius.IsApproximatelyEqual(f2.radius); + + protected override Fact _ReInitializeMe(Dictionary<string, string> old_to_new, FactOrganizer organizer) + => new CircleFact(old_to_new[this.Pid1], old_to_new[this.Pid2], this.radius, this.normal, organizer); } /// <summary> @@ -1150,15 +1180,6 @@ public OnCircleFact() : base() this.Cid = null; } - /// <summary> - /// Copies <paramref name="fact"/> by initiating new MMT %Fact. - /// </summary> - /// <param name="fact">Fact to be copied</param> - /// <param name="old_to_new"><c>Dictionary</c> mapping <paramref name="fact"/>.<see cref="getDependentFactIds"/> in <paramref name="fact"/>.<see cref="Fact._Facts"/> to corresponding <see cref="Fact.Id"/> in <paramref name="organizer"/> </param> - /// <param name="organizer">sets <see cref="_Facts"/></param> - public OnCircleFact(OnCircleFact fact, Dictionary<string, string> old_to_new, FactOrganizer organizer) : base(fact, organizer) - => init(old_to_new[fact.Pid], old_to_new[fact.Cid]); - /// <summary> /// Standard Constructor /// </summary> @@ -1178,7 +1199,7 @@ private void init(string pid, string cid) this.Pid = pid; this.Cid = cid; ; - RecalulateTransform(); + RecalculateTransform(); SOMDoc tp = new OMA( @@ -1196,7 +1217,7 @@ private void init(string pid, string cid) AddFactResponse.sendAdd(new MMTSymbolDeclaration(Label, tp, df), out _URI); } - protected override void RecalulateTransform() + protected override void RecalculateTransform() { Position = Point.Position; Rotation = Circle.Rotation; @@ -1216,7 +1237,7 @@ public OnCircleFact(string pid, string cid, string uri, FactOrganizer organizer) this._URI = uri; _ = this.Label; - RecalulateTransform(); + RecalculateTransform(); } /// \copydoc Fact.parseFact(Scroll.ScrollFact) @@ -1265,6 +1286,9 @@ public override GameObject instantiateDisplay(GameObject prefab, Transform trans /// \copydoc Fact.Equivalent(Fact, Fact) protected override bool EquivalentWrapped(OnCircleFact c1, OnCircleFact c2) => DependentFactsEquivalent(c1, c2); + + protected override Fact _ReInitializeMe(Dictionary<string, string> old_to_new, FactOrganizer organizer) + => new OnCircleFact(old_to_new[this.Pid], old_to_new[this.Cid], organizer); } /// <summary> @@ -1298,15 +1322,6 @@ public AngleCircleLineFact() : base() this.angle = 0.0f; } - /// <summary> - /// Copies <paramref name="fact"/> by initiating new MMT %Fact. - /// </summary> - /// <param name="fact">Fact to be copied</param> - /// <param name="old_to_new"><c>Dictionary</c> mapping <paramref name="fact"/>.<see cref="getDependentFactIds"/> in <paramref name="fact"/>.<see cref="Fact._Facts"/> to corresponding <see cref="Fact.Id"/> in <paramref name="organizer"/> </param> - /// <param name="organizer">sets <see cref="_Facts"/></param> - public AngleCircleLineFact(AngleCircleLineFact fact, Dictionary<string, string> old_to_new, FactOrganizer organizer) : base(fact, organizer) - => init(old_to_new[fact.Cid1], old_to_new[fact.Rid2]); - /// <summary> /// Standard Constructor /// </summary> @@ -1330,13 +1345,13 @@ private void init(string cid1, string rid2) this.angle = Math3d.AngleVectorPlane(Ray.Dir, Circle.normal).ToDegrees(); Math3d.LinePlaneIntersection(out intersection, Ray.Point1.Position, Ray.Dir, Circle.normal, Circle.Position); - RecalulateTransform(); + RecalculateTransform(); - MMTDeclaration mmtDecl = generateMMTDeclaration(angle, cid1, rid2); + MMTDeclaration mmtDecl = MakeMMTDeclaration(angle, cid1, rid2); AddFactResponse.sendAdd(mmtDecl, out this._URI); } - protected override void RecalulateTransform() + protected override void RecalculateTransform() { Position = intersection; { //Rotation @@ -1378,7 +1393,7 @@ public AngleCircleLineFact(string Cid1, string Rid2, float angle, string backend this._URI = backendURI; _ = this.Label; - RecalulateTransform(); + RecalculateTransform(); } /// \copydoc Fact.parseFact(Scroll.ScrollFact) @@ -1423,7 +1438,7 @@ protected override string generateLabel() /// <param name="R2URI"><see cref="Rid2"/></param> /// <param name="val"><see cref="angle"/></param> /// <returns>struct for <see cref="AddFactResponse"/></returns> - private MMTDeclaration generateMMTDeclaration(float val, string c1URI, string r2URI) + private MMTDeclaration MakeMMTDeclaration(float val, string c1URI, string r2URI) { SOMDoc lhs = new OMA( @@ -1441,7 +1456,7 @@ private MMTDeclaration generateMMTDeclaration(float val, string c1URI, string r2 } /// \copydoc Fact.hasDependentFacts - public override Boolean hasDependentFacts() + public override bool hasDependentFacts() => true; /// \copydoc Fact.getDependentFactIds @@ -1461,6 +1476,9 @@ public override GameObject instantiateDisplay(GameObject prefab, Transform trans /// \copydoc Fact.Equivalent(Fact, Fact) protected override bool EquivalentWrapped(AngleCircleLineFact f1, AngleCircleLineFact f2) => DependentFactsEquivalent(f1, f2); + + protected override Fact _ReInitializeMe(Dictionary<string, string> old_to_new, FactOrganizer organizer) + => new AngleCircleLineFact(old_to_new[this.Cid1], old_to_new[this.Rid2], organizer); } /// <summary> @@ -1484,15 +1502,6 @@ public RadiusFact() : base() this.rad = 0.0f; } - /// <summary> - /// Copies <paramref name="fact"/> by initiating new MMT %Fact. - /// </summary> - /// <param name="fact">Fact to be copied</param> - /// <param name="old_to_new"><c>Dictionary</c> mapping <paramref name="fact"/>.<see cref="getDependentFactIds"/> in <paramref name="fact"/>.<see cref="Fact._Facts"/> to corresponding <see cref="Fact.Id"/> in <paramref name="organizer"/> </param> - /// <param name="organizer">sets <see cref="_Facts"/></param> - public RadiusFact(RadiusFact fact, Dictionary<string, string> old_to_new, FactOrganizer organizer) : base(fact, organizer) - => init(old_to_new[fact.Cid1]); - /// <summary> /// Standard Constructor /// </summary> @@ -1510,13 +1519,13 @@ private void init(string cid1) this.Cid1 = cid1; this.rad = Circle.radius; - RecalulateTransform(); + RecalculateTransform(); MMTDeclaration mmtDecl = generateMMTDeclaration(cid1, this.rad); AddFactResponse.sendAdd(mmtDecl, out this._URI); } - protected override void RecalulateTransform() + protected override void RecalculateTransform() { Position = Circle.Position; Rotation = Circle.Rotation; @@ -1535,7 +1544,7 @@ public RadiusFact(string Cid1, string backendURI, FactOrganizer organizer) : bas this._URI = backendURI; _ = this.Label; - RecalulateTransform(); + RecalculateTransform(); } /// \copydoc Fact.parseFact(Scroll.ScrollFact) @@ -1599,6 +1608,9 @@ public override GameObject instantiateDisplay(GameObject prefab, Transform trans /// \copydoc Fact.Equivalent(Fact, Fact) protected override bool EquivalentWrapped(RadiusFact f1, RadiusFact f2) => DependentFactsEquivalent(f1, f2); + + protected override Fact _ReInitializeMe(Dictionary<string, string> old_to_new, FactOrganizer organizer) + => new RadiusFact(old_to_new[this.Cid1], organizer); } /// <summary> @@ -1623,15 +1635,6 @@ public AreaCircleFact() : base() this.A = 0.0f; } - /// <summary> - /// Copies <paramref name="fact"/> by initiating new MMT %Fact. - /// </summary> - /// <param name="fact">Fact to be copied</param> - /// <param name="old_to_new"><c>Dictionary</c> mapping <paramref name="fact"/>.<see cref="getDependentFactIds"/> in <paramref name="fact"/>.<see cref="Fact._Facts"/> to corresponding <see cref="Fact.Id"/> in <paramref name="organizer"/> </param> - /// <param name="organizer">sets <see cref="_Facts"/></param> - public AreaCircleFact(AreaCircleFact fact, Dictionary<string, string> old_to_new, FactOrganizer organizer) : base(fact, organizer) - => init(old_to_new[fact.Cid1]); - /// <summary> /// Standard Constructor /// </summary> @@ -1651,13 +1654,13 @@ private void init(string cid1) this.A = Circle.radius * Circle.radius * ((float)System.Math.PI); - RecalulateTransform(); + RecalculateTransform(); MMTDeclaration mmtDecl = generateMMTDeclaration(cid1, this.A); AddFactResponse.sendAdd(mmtDecl, out this._URI); } - protected override void RecalulateTransform() + protected override void RecalculateTransform() { Position = Circle.Position; Rotation = Circle.Rotation; @@ -1676,7 +1679,7 @@ public AreaCircleFact(string Cid1, string backendURI, FactOrganizer organizer) : this._URI = backendURI; _ = this.Label; - RecalulateTransform(); + RecalculateTransform(); } /// \copydoc Fact.parseFact(Scroll.ScrollFact) @@ -1742,6 +1745,9 @@ public override int GetHashCode() /// \copydoc Fact.Equivalent(Fact, Fact) protected override bool EquivalentWrapped(AreaCircleFact f1, AreaCircleFact f2) => DependentFactsEquivalent(f1, f2); + + protected override Fact _ReInitializeMe(Dictionary<string, string> old_to_new, FactOrganizer organizer) + => new AreaCircleFact(old_to_new[this.Cid1], organizer); } /// <summary> @@ -1770,15 +1776,6 @@ public ConeVolumeFact() : base() this.vol = 0.0f; } - /// <summary> - /// Copies <paramref name="fact"/> by initiating new MMT %Fact. - /// </summary> - /// <param name="fact">Fact to be copied</param> - /// <param name="old_to_new"><c>Dictionary</c> mapping <paramref name="fact"/>.<see cref="getDependentFactIds"/> in <paramref name="fact"/>.<see cref="Fact._Facts"/> to corresponding <see cref="Fact.Id"/> in <paramref name="organizer"/> </param> - /// <param name="organizer">sets <see cref="_Facts"/></param> - public ConeVolumeFact(ConeVolumeFact fact, Dictionary<string, string> old_to_new, FactOrganizer organizer) : base(fact, organizer) - => init(old_to_new[fact.Cid1], old_to_new[fact.Pid1], fact.vol); - /// <summary> /// Standard Constructor /// </summary> @@ -1801,13 +1798,13 @@ private void init(string cid1, string pid1, float vol) this.Pid1 = pid1; this.vol = vol; - RecalulateTransform(); + RecalculateTransform(); MMTDeclaration mmtDecl = generateMMTDeclaration(cid1, pid1, vol); AddFactResponse.sendAdd(mmtDecl, out this._URI); } - protected override void RecalulateTransform() + protected override void RecalculateTransform() { Position = Point.Position; Rotation = Circle.Rotation; @@ -1830,7 +1827,7 @@ public ConeVolumeFact(string Cid1, string Pid1, float volume, string backendURI, this._URI = backendURI; _ = this.Label; - RecalulateTransform(); + RecalculateTransform(); } /// \copydoc Fact.parseFact(Scroll.ScrollFact) @@ -1909,6 +1906,9 @@ public override GameObject instantiateDisplay(GameObject prefab, Transform trans /// \copydoc Fact.Equivalent(Fact, Fact) protected override bool EquivalentWrapped(ConeVolumeFact f1, ConeVolumeFact f2) => DependentFactsEquivalent(f1, f2); + + protected override Fact _ReInitializeMe(Dictionary<string, string> old_to_new, FactOrganizer organizer) + => new ConeVolumeFact(old_to_new[this.Cid1], old_to_new[this.Pid1], this.vol, organizer); } /// <summary> @@ -1941,15 +1941,6 @@ public OrthogonalCircleLineFact() : base() this.Lid1 = null; } - /// <summary> - /// Copies <paramref name="fact"/> by initiating new MMT %Fact. - /// </summary> - /// <param name="fact">Fact to be copied</param> - /// <param name="old_to_new"><c>Dictionary</c> mapping <paramref name="fact"/>.<see cref="getDependentFactIds"/> in <paramref name="fact"/>.<see cref="Fact._Facts"/> to corresponding <see cref="Fact.Id"/> in <paramref name="organizer"/> </param> - /// <param name="organizer">sets <see cref="_Facts"/></param> - public OrthogonalCircleLineFact(OrthogonalCircleLineFact fact, Dictionary<string, string> old_to_new, FactOrganizer organizer) : base(fact, organizer) - => init(old_to_new[fact.Cid1], old_to_new[fact.Lid1]); - /// <summary> /// Standard Constructor /// </summary> @@ -1970,13 +1961,13 @@ private void init(string cid1, string lid1) this.Lid1 = lid1; Math3d.LinePlaneIntersection(out intersection, Ray.Point1.Position, Ray.Dir, Circle.normal, Circle.Position); - RecalulateTransform(); + RecalculateTransform(); MMTDeclaration mmtDecl = generateMMTDeclaration(cid1, lid1); AddFactResponse.sendAdd(mmtDecl, out this._URI); } - protected override void RecalulateTransform() + protected override void RecalculateTransform() { Position = intersection; { //Rotation @@ -2008,7 +1999,7 @@ public OrthogonalCircleLineFact(string Cid1, string Lid1, string backendURI, Fac this._URI = backendURI; _ = this.Label; - RecalulateTransform(); + RecalculateTransform(); } /// \copydoc Fact.parseFact(Scroll.ScrollFact) @@ -2089,6 +2080,9 @@ public override int GetHashCode() /// \copydoc Fact.Equivalent(Fact, Fact) protected override bool EquivalentWrapped(OrthogonalCircleLineFact f1, OrthogonalCircleLineFact f2) => DependentFactsEquivalent(f1, f2); + + protected override Fact _ReInitializeMe(Dictionary<string, string> old_to_new, FactOrganizer organizer) + => new OrthogonalCircleLineFact(old_to_new[this.Cid1], old_to_new[this.Lid1], organizer); } /// <summary> @@ -2124,15 +2118,6 @@ public TruncatedConeVolumeFact() : base() this.proof = null; } - /// <summary> - /// Copies <paramref name="fact"/> by initiating new MMT %Fact. - /// </summary> - /// <param name="fact">Fact to be copied</param> - /// <param name="old_to_new"><c>Dictionary</c> mapping <paramref name="fact"/>.<see cref="getDependentFactIds"/> in <paramref name="fact"/>.<see cref="Fact._Facts"/> to corresponding <see cref="Fact.Id"/> in <paramref name="organizer"/> </param> - /// <param name="organizer">sets <see cref="_Facts"/></param> - public TruncatedConeVolumeFact(TruncatedConeVolumeFact fact, Dictionary<string, string> old_to_new, FactOrganizer organizer) : base(fact, organizer) - => init(old_to_new[fact.Cid1], old_to_new[fact.Cid2], fact.vol, old_to_new[fact.unequalCirclesProof], fact.proof); - /// <summary> /// Standard Constructor /// </summary> @@ -2159,13 +2144,13 @@ private void init(string cid1, string cid2, float vol, string unequalproof, OMA this.unequalCirclesProof = unequalproof; this.vol = vol; - RecalulateTransform(); + RecalculateTransform(); MMTDeclaration mmtDecl = generateMMTDeclaration(cid1, cid2, vol, unequalproof, proof); AddFactResponse.sendAdd(mmtDecl, out this._URI); } - protected override void RecalulateTransform() + protected override void RecalculateTransform() { Position = Circle2.Position; Rotation = Circle2.Rotation; @@ -2191,7 +2176,7 @@ public TruncatedConeVolumeFact(string Cid1, string Cid2, float volume, string un this._URI = backendURI; _ = this.Label; - RecalulateTransform(); + RecalculateTransform(); } /// \copydoc Fact.parseFact(Scroll.ScrollFact) @@ -2267,6 +2252,9 @@ public override GameObject instantiateDisplay(GameObject prefab, Transform trans /// \copydoc Fact.Equivalent(Fact, Fact) protected override bool EquivalentWrapped(TruncatedConeVolumeFact f1, TruncatedConeVolumeFact f2) => DependentFactsEquivalent(f1, f2); + + protected override Fact _ReInitializeMe(Dictionary<string, string> old_to_new, FactOrganizer organizer) + => new TruncatedConeVolumeFact(old_to_new[this.Cid1], old_to_new[this.Cid2], this.vol, old_to_new[this.unequalCirclesProof], this.proof, organizer); } /// <summary> @@ -2301,15 +2289,6 @@ public CylinderVolumeFact() : base() this.equalCirclesProof = null; } - /// <summary> - /// Copies <paramref name="fact"/> by initiating new MMT %Fact. - /// </summary> - /// <param name="fact">Fact to be copied</param> - /// <param name="old_to_new"><c>Dictionary</c> mapping <paramref name="fact"/>.<see cref="getDependentFactIds"/> in <paramref name="fact"/>.<see cref="Fact._Facts"/> to corresponding <see cref="Fact.Id"/> in <paramref name="organizer"/> </param> - /// <param name="organizer">sets <see cref="_Facts"/></param> - public CylinderVolumeFact(CylinderVolumeFact fact, Dictionary<string, string> old_to_new, FactOrganizer organizer) : base(fact, organizer) - => init(old_to_new[fact.Cid1], old_to_new[fact.Cid2], fact.vol, old_to_new[fact.equalCirclesProof], fact.proof); - /// <summary> /// Standard Constructor /// </summary> @@ -2336,13 +2315,13 @@ private void init(string cid1, string cid2, float vol, string eqProof, OMA proof this.equalCirclesProof = eqProof; this.vol = vol; - RecalulateTransform(); + RecalculateTransform(); MMTDeclaration mmtDecl = generateMMTDeclaration(cid1, cid2, vol, eqProof, proof); AddFactResponse.sendAdd(mmtDecl, out this._URI); } - protected override void RecalulateTransform() + protected override void RecalculateTransform() { Position = Circle2.Position; Rotation = Circle2.Rotation; @@ -2368,7 +2347,7 @@ public CylinderVolumeFact(string Cid1, string Cid2, float volume, string eqProof this._URI = backendURI; _ = this.Label; - RecalulateTransform(); + RecalculateTransform(); } /// \copydoc Fact.parseFact(Scroll.ScrollFact) @@ -2443,6 +2422,9 @@ public override GameObject instantiateDisplay(GameObject prefab, Transform trans /// \copydoc Fact.Equivalent(Fact, Fact) protected override bool EquivalentWrapped(CylinderVolumeFact f1, CylinderVolumeFact f2) => DependentFactsEquivalent(f1, f2); + + protected override Fact _ReInitializeMe(Dictionary<string, string> old_to_new, FactOrganizer organizer) + => new CylinderVolumeFact(old_to_new[this.Cid1], old_to_new[this.Cid2], this.vol, old_to_new[this.equalCirclesProof], this.proof, organizer); } /// <summary> @@ -2468,15 +2450,6 @@ public EqualCirclesFact() : base() this.Cid2 = null; } - /// <summary> - /// Copies <paramref name="fact"/> by initiating new MMT %Fact. - /// </summary> - /// <param name="fact">Fact to be copied</param> - /// <param name="old_to_new"><c>Dictionary</c> mapping <paramref name="fact"/>.<see cref="getDependentFactIds"/> in <paramref name="fact"/>.<see cref="Fact._Facts"/> to corresponding <see cref="Fact.Id"/> in <paramref name="organizer"/> </param> - /// <param name="organizer">sets <see cref="_Facts"/></param> - public EqualCirclesFact(EqualCirclesFact fact, Dictionary<string, string> old_to_new, FactOrganizer organizer) : base(fact, organizer) - => init(old_to_new[fact.Cid1], old_to_new[fact.Cid2]); - /// <summary> /// Standard Constructor /// </summary> @@ -2496,13 +2469,13 @@ private void init(string cid1, string cid2) this.Cid1 = cid1; this.Cid2 = cid2; - RecalulateTransform(); + RecalculateTransform(); MMTDeclaration mmtDecl = generateEqualCirclesFactDeclaration(cid1, cid2); AddFactResponse.sendAdd(mmtDecl, out this._URI); } - protected override void RecalulateTransform() + protected override void RecalculateTransform() { Position = Circle1.Position; Rotation = Circle1.Rotation; @@ -2523,7 +2496,7 @@ public EqualCirclesFact(string Cid1, string Cid2, string backendURI, FactOrganiz this._URI = backendURI; _ = this.Label; - RecalulateTransform(); + RecalculateTransform(); } /// \copydoc Fact.parseFact(Scroll.ScrollFact) @@ -2611,6 +2584,9 @@ public override GameObject instantiateDisplay(GameObject prefab, Transform trans /// \copydoc Fact.Equivalent(Fact, Fact) protected override bool EquivalentWrapped(EqualCirclesFact f1, EqualCirclesFact f2) => DependentFactsEquivalent(f1, f2); + + protected override Fact _ReInitializeMe(Dictionary<string, string> old_to_new, FactOrganizer organizer) + => new EqualCirclesFact(old_to_new[this.Cid1], old_to_new[this.Cid2], organizer); } /// <summary> @@ -2636,15 +2612,6 @@ public UnEqualCirclesFact() : base() this.Cid2 = null; } - /// <summary> - /// Copies <paramref name="fact"/> by initiating new MMT %Fact. - /// </summary> - /// <param name="fact">Fact to be copied</param> - /// <param name="old_to_new"><c>Dictionary</c> mapping <paramref name="fact"/>.<see cref="getDependentFactIds"/> in <paramref name="fact"/>.<see cref="Fact._Facts"/> to corresponding <see cref="Fact.Id"/> in <paramref name="organizer"/> </param> - /// <param name="organizer">sets <see cref="_Facts"/></param> - public UnEqualCirclesFact(UnEqualCirclesFact fact, Dictionary<string, string> old_to_new, FactOrganizer organizer) : base(fact, organizer) - => init(old_to_new[fact.Cid1], old_to_new[fact.Cid2]); - /// <summary> /// Standard Constructor /// </summary> @@ -2664,13 +2631,13 @@ private void init(string cid1, string cid2) this.Cid1 = cid1; this.Cid2 = cid2; - RecalulateTransform(); + RecalculateTransform(); MMTDeclaration mmtDecl = generateUnEqualCirclesFactDeclaration(cid1, cid2); AddFactResponse.sendAdd(mmtDecl, out this._URI); } - protected override void RecalulateTransform() + protected override void RecalculateTransform() { Position = Circle2.Position; Rotation = Circle2.Rotation; @@ -2691,7 +2658,7 @@ public UnEqualCirclesFact(string Cid1, string Cid2, string backendURI, FactOrgan this._URI = backendURI; _ = this.Label; - RecalulateTransform(); + RecalculateTransform(); } /// \copydoc Fact.parseFact(Scroll.ScrollFact) @@ -2774,6 +2741,9 @@ public override GameObject instantiateDisplay(GameObject prefab, Transform trans /// \copydoc Fact.Equivalent(Fact, Fact) protected override bool EquivalentWrapped(UnEqualCirclesFact f1, UnEqualCirclesFact f2) => DependentFactsEquivalent(f1, f2); + + protected override Fact _ReInitializeMe(Dictionary<string, string> old_to_new, FactOrganizer organizer) + => new UnEqualCirclesFact(old_to_new[this.Cid1], old_to_new[this.Cid2], organizer); } @@ -2793,17 +2763,6 @@ public TestFact() : base() } - /// <summary> - /// Copies <paramref name="fact"/> by initiating new MMT %Fact. - /// </summary> - /// <param name="fact">Fact to be copied</param> - /// <param name="old_to_new"><c>Dictionary</c> mapping <paramref name="fact"/>.<see cref="getDependentFactIds"/> in <paramref name="fact"/>.<see cref="Fact._Facts"/> to corresponding <see cref="Fact.Id"/> in <paramref name="organizer"/> </param> - /// <param name="organizer">sets <see cref="_Facts"/></param> - public TestFact(TestFact fact, Dictionary<string, string> old_to_new, FactOrganizer organizer) : base(fact, organizer) - { - init(); - } - /// <summary> /// Standard Constructor /// </summary> @@ -2833,7 +2792,7 @@ private void init() // AddFactResponse.sendAdd(mmtDecl, out this._URI); } - protected override void RecalulateTransform() { } + protected override void RecalculateTransform() { } /// <summary> /// Bypasses initialization of new MMT %Fact by using existend URI, _which is not checked for existence_. @@ -2870,8 +2829,6 @@ protected override string generateLabel() return "test"; } - - /// <summary> /// Constructs struct for right-angled MMT %Fact <see cref="AddFactResponse"/> /// </summary> @@ -2924,15 +2881,12 @@ private MMTDeclaration generateCircleFactDeclaration(string p1URI, string p2URI, return mmtDecl; } - /// \copydoc Fact.hasDependentFacts public override Boolean hasDependentFacts() { return false; } - - /// \copydoc Fact.getDependentFactIds public override string[] getDependentFactIds() { @@ -2961,6 +2915,9 @@ protected override bool EquivalentWrapped(TestFact f1, TestFact f2) { return DependentFactsEquivalent(f1, f2); } + + protected override Fact _ReInitializeMe(Dictionary<string, string> old_to_new, FactOrganizer organizer) + => new TestFact(organizer); } #pragma warning restore // Testing over \ No newline at end of file diff --git a/Assets/Scripts/InteractionEngine/FactHandling/Facts/FunctionFact.cs b/Assets/Scripts/InteractionEngine/FactHandling/Facts/FunctionFact.cs index 43dfab4c45f76e0b5137dbfba9b91bf14984c358..35b9b346c675278fa05df47993bc84e40ad14aba 100644 --- a/Assets/Scripts/InteractionEngine/FactHandling/Facts/FunctionFact.cs +++ b/Assets/Scripts/InteractionEngine/FactHandling/Facts/FunctionFact.cs @@ -32,15 +32,6 @@ public class FunctionFact<T0, TResult> : FactWrappedCRTP<FunctionFact<T0, TResul /// <summary> \copydoc Fact.Fact </summary> public FunctionFact() : base() { } - /// <summary> - /// Copies <paramref name="fact"/> by initiating new MMT %Fact. - /// </summary> - /// <param name="fact">Fact to be copied</param> - /// <param name="old_to_new"><c>Dictionary</c> mapping <paramref name="fact"/>.<see cref="getDependentFactIds"/> in <paramref name="fact"/>.<see cref="Fact._Facts"/> to corresponding <see cref="Fact.Id"/> in <paramref name="organizer"/> </param> - /// <param name="organizer">sets <see cref="_Facts"/></param> - public FunctionFact(FunctionFact<T0, TResult> fact, Dictionary<string, string> old_to_new, FactOrganizer organizer) : base(fact, organizer) - => init(fact.Function_SOMDoc.MapURIs(old_to_new), fact.Domain); - /// <summary> /// Standard Constructor /// </summary> @@ -69,7 +60,7 @@ public FunctionFact(SOMDoc Function_SOMDoc, (T0, T0) domain, string uri, FactOrg this._URI = uri; _ = this.Label; - RecalulateTransform(); + RecalculateTransform(); } /// <summary> @@ -99,11 +90,11 @@ private void init(SOMDoc Function_SOMDoc, (T0, T0) domain) //ParsingDictionary.parseTermsToId[df.ToString()] = _URI; - RecalulateTransform(); + RecalculateTransform(); return; } - protected override void RecalulateTransform() { } + protected override void RecalculateTransform() { } /// \copydoc Fact.parseFact(Scroll.ScrollFact) public new static FunctionFact<T0, TResult> parseFact(Scroll.ScrollFact fact) @@ -145,8 +136,11 @@ public override GameObject instantiateDisplay(GameObject prefab, Transform trans /// \copydoc Fact.EquivalentWrapped protected override bool EquivalentWrapped(FunctionFact<T0, TResult> f1, FunctionFact<T0, TResult> f2) //=> f1.Function_SOMDoc.Equivalent(f2.Function_SOMDoc); + // && f1.domain.Equals(f2.domain); // no! => exact instead of similar => CRTP => false; - // && f1.domain.Equals(f2.domain); // no! => exact instead of similar => CRTP + + protected override Fact _ReInitializeMe(Dictionary<string, string> old_to_new, FactOrganizer organizer) + => new FunctionFact<T0, TResult>(this.Function_SOMDoc.MapURIs(old_to_new), this.Domain, organizer); } /// <summary> @@ -158,9 +152,6 @@ public abstract class FunctionFactCRTP<CRTP, T0, TResult> : FunctionFact<T0, TRe /// <summary> \copydoc FunctionFact.FunctionFact </summary> protected FunctionFactCRTP() : base() { } - /// <summary> \copydoc FunctionFact.FunctionFact(FunctionFact{T0, TResult} fact, Dictionary{string, string} old_to_new, FactOrganizer organizer) </summary> - protected FunctionFactCRTP(FunctionFactCRTP<CRTP, T0, TResult> fact, Dictionary<string, string> old_to_new, FactOrganizer organizer) : base(fact, old_to_new, organizer) { } - /// <summary> \copydoc FunctionFact.FunctionFact(SOMDoc, Tuple{T0, T0}, FactOrganizer) </summary> protected FunctionFactCRTP(SOMDoc Function_MMT, (T0, T0) domain, FactOrganizer organizer) : base(Function_MMT, domain, organizer) { } @@ -172,7 +163,7 @@ protected override bool EquivalentWrapped(FunctionFact<T0, TResult> f1, Function => EquivalentWrapped((CRTP)f1, (CRTP)f2) && base.EquivalentWrapped(f1, f2); - /// <summary>CRTP step of <see cref="EquivalentWrapped(FunctionFact{T0, TResult}, AbstractLineFact{T0, TResult})"/></summary> + /// <summary>CRTP step of <see cref="EquivalentWrapped(FunctionFact{T0, TResult}, FunctionFact{T0, TResult})"/></summary> protected abstract bool EquivalentWrapped(CRTP f1, CRTP f2); } @@ -184,9 +175,6 @@ public class FunctionFactFloat<TResult> : FunctionFactCRTP<FunctionFactFloat<TRe /// <summary> \copydoc FunctionFact.FunctionFact </summary> public FunctionFactFloat() : base() { } - /// <summary> \copydoc FunctionFact.FunctionFact(FunctionFact{T0, TResult} fact, Dictionary{string, string} old_to_new, FactOrganizer organizer) </summary> - public FunctionFactFloat(FunctionFactFloat<TResult> fact, Dictionary<string, string> old_to_new, FactOrganizer organizer) : base(fact, old_to_new, organizer) { } - /// <summary> \copydoc FunctionFact.FunctionFact(SOMDoc, Tuple{T0, T0}, FactOrganizer) </summary> public FunctionFactFloat(SOMDoc Function_MMT, (float, float) domain, FactOrganizer organizer) : base(Function_MMT, domain, organizer) { } @@ -198,6 +186,9 @@ protected override bool EquivalentWrapped(FunctionFactFloat<TResult> f1, Functio => f1.Function_SOMDoc.Equivalent(f2.Function_SOMDoc) && f1.Domain.t_0.IsApproximatelyEqual(f2.Domain.t_0) && f1.Domain.t_n.IsApproximatelyEqual(f2.Domain.t_n); + + protected override Fact _ReInitializeMe(Dictionary<string, string> old_to_new, FactOrganizer organizer) + => new FunctionFactFloat<TResult>(this.Function_SOMDoc.MapURIs(old_to_new), this.Domain, organizer); } public class AttachedPositionFunction : FactWrappedCRTP<AttachedPositionFunction> @@ -216,10 +207,6 @@ public FunctionFact<float, Vector3>[] FunctionFacts { /// <summary>\copydoc Fact.Fact()</summary> public AttachedPositionFunction() : base() { } - /// <summary>\copydoc Fact.Fact(Fact, FactOrganizer)</summary> - public AttachedPositionFunction(AttachedPositionFunction fact, Dictionary<string, string> old_to_new, FactOrganizer organizer) : base(fact, organizer) - => init(old_to_new[fact.fid], fact.funcids.Select(id => old_to_new[id]).ToArray()); - /// <summary>\copydoc Fact.Fact(FactOrganizer)</summary> public AttachedPositionFunction(string fid, string[] funcids, FactOrganizer organizer) : base(organizer) => init(fid, funcids); @@ -234,7 +221,7 @@ private void init(string fid, string[] funcids) //TODO: call MMT, set URI _URI = Fact.Id + "{" + string.Join(", ", FunctionFacts.Select(f => f.Id)) + "}"; - RecalulateTransform(); + RecalculateTransform(); } protected AttachedPositionFunction(string fid, string[] funcids, string uri, FactOrganizer organizer) : base(organizer) @@ -246,7 +233,7 @@ protected AttachedPositionFunction(string fid, string[] funcids, string uri, Fac _URI = uri; - RecalulateTransform(); + RecalculateTransform(); } public new static AttachedPositionFunction parseFact(Scroll.ScrollFact fact) @@ -290,10 +277,13 @@ public override GameObject instantiateDisplay(GameObject prefab, Transform trans protected override bool EquivalentWrapped(AttachedPositionFunction f1, AttachedPositionFunction f2) => DependentFactsEquivalent(f1, f2); - protected override void RecalulateTransform() + protected override void RecalculateTransform() { Position = Fact.Position; Rotation = Fact.Rotation; LocalScale = Fact.LocalScale; } + + protected override Fact _ReInitializeMe(Dictionary<string, string> old_to_new, FactOrganizer organizer) + => new AttachedPositionFunction(old_to_new[this.fid], this.funcids.Select(id => old_to_new[id]).ToArray(), organizer); } diff --git a/Assets/Scripts/InteractionEngine/FactHandling/SolutionOrganizer.cs b/Assets/Scripts/InteractionEngine/FactHandling/SolutionOrganizer.cs index 6e5ca448ff57fa4ab99574dbf20b04145dd947e6..480d521faf4db645024874438f34ea190a252c19 100644 --- a/Assets/Scripts/InteractionEngine/FactHandling/SolutionOrganizer.cs +++ b/Assets/Scripts/InteractionEngine/FactHandling/SolutionOrganizer.cs @@ -163,4 +163,7 @@ SolutionOrganizer IJSONsavable<SolutionOrganizer>._IJPostProcess(SolutionOrganiz return payload; } + + SolutionOrganizer IJSONsavable<SolutionOrganizer>._IJPreProcess(SolutionOrganizer payload) + => (SolutionOrganizer)IJSONsavable<FactOrganizer>.preprocess(payload); } diff --git a/Assets/Scripts/InteractionEngine/TBD/AttachedPositionFunctionBehaviour.cs b/Assets/Scripts/InteractionEngine/TBD/AttachedPositionFunctionBehaviour.cs index 3a4b3f78dd063f19028556c540511bedae6b35af..2814798d8a0c39a95fd9bd239bf0774c6df36afd 100644 --- a/Assets/Scripts/InteractionEngine/TBD/AttachedPositionFunctionBehaviour.cs +++ b/Assets/Scripts/InteractionEngine/TBD/AttachedPositionFunctionBehaviour.cs @@ -50,7 +50,7 @@ public void NewExecutingInstance() return; AttachedPositionFunctionBehaviour cloneComp = - GameObject.Instantiate(gameObject, gameObject.transform) + GameObject.Instantiate(gameObject)//, gameObject.transform) .GetComponent<AttachedPositionFunctionBehaviour>(); cloneComp.Start(); cloneComp.original = false; diff --git a/Assets/Scripts/MeshGenerator/CircleSegmentGenerator.cs b/Assets/Scripts/MeshGenerator/CircleSegmentGenerator.cs index 2d4148134b9a1b2dc0fd16631b2d88ead6a530cc..e8e284b7a55eda5f284324d6529daeee0a2d8854 100644 --- a/Assets/Scripts/MeshGenerator/CircleSegmentGenerator.cs +++ b/Assets/Scripts/MeshGenerator/CircleSegmentGenerator.cs @@ -19,7 +19,7 @@ public void setAngle(float angle) private void CreateSegment(float angle, float radius) { - float absoluteAngle = Mathf.Abs(angle); + float absoluteAngle = angle == 0f ? (float) Math3d.vectorPrecission : Mathf.Abs(angle); List<Vector3> verticeList = new List<Vector3>(); List<int> triangleList = new List<int>(); diff --git a/Assets/Scripts/Utility/IJSONsavable.cs b/Assets/Scripts/Utility/IJSONsavable.cs index 6f6a6a88bec8af441fe411e618dee78e221dfa49..ceb759ee97830304600997f3a126ee0d47ec960e 100644 --- a/Assets/Scripts/Utility/IJSONsavable.cs +++ b/Assets/Scripts/Utility/IJSONsavable.cs @@ -367,8 +367,7 @@ public static bool WriteToJsonFile(string filePath, object objectToWrite) } finally { - if (writer != null) - writer.Close(); + writer?.Close(); } } @@ -398,8 +397,7 @@ public static bool WriteToJsonFile(string filePath, object objectToWrite) } finally { - if (reader != null) - reader.Close(); + reader?.Close(); } } diff --git a/Assets/Stages/CanonBall A.JSON b/Assets/Stages/CanonBall A.JSON index a19d270fe05feb67f013c184f29ed95b32d91fae..5e87cf2b5e5a922a4eb8e36b3fc58544e542ace2 100644 --- a/Assets/Stages/CanonBall A.JSON +++ b/Assets/Stages/CanonBall A.JSON @@ -7,19 +7,19 @@ "solution": { "ValidationSet": [], "ExposedSolutionFacts": [ - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1626", - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1629", - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1632", - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1635", - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1638", - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1641", - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1644", - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1647", - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1650", - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1653", - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1656", - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1659", - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1660", + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1100", + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1103", + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1106", + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1109", + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1112", + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1115", + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1118", + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1121", + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1124", + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1127", + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1130", + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1133", + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1134", "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.71507, 18.63876) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.3575, -24.0345) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2859854)", "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 16.41822, 11.76509) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 18.17429, -15.64585) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1854527)", "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 19.61984, 8.863367) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -16.15633, -15.4558) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5734656)", @@ -276,163 +276,163 @@ "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.487125E-08, 0.8111601) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007536175, 0.0001603975) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001546299)", "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.560991E-08, 0.8111603) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007610042, 0.0001599148) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001561359)", "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.634941E-08, 0.8111606) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007683991, 0.0001594396) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001576437)", - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1660{t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.71507, 18.63876) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.3575, -24.0345) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2859854), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 16.41822, 11.76509) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 18.17429, -15.64585) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1854527), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 19.61984, 8.863367) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -16.15633, -15.4558) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5734656), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.74145, 0.0001512584) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -21.45141, 15.22121) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2155912), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.888747, 3.281431) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.38822, -27.80841) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1180014), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.984262, 0.0002780475) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.2305991, 27.80475) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1191256), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.94236, 3.31239) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 23.42652, -14.6) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2268761), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 9.005012, 0.0001435129) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 20.87433, 14.37513) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.590435), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 19.61985, 8.487865) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -14.8994, 14.20093) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.691238), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.977393, 18.30397) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 23.09713, -11.65444) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3922241), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 15.28206, 13.7326) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.4603704, -22.11528) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.6209553), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 13.67658, 0.0002202752) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -5.608852, 22.02752) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2200489), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 12.20507, 4.847275) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 22.02752, -7.767531) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3665375), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 19.61982, 2.000106) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -18.31479, -7.718225) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2591408), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.54411, 7.497284E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -20.45319, 7.56881) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.456389), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.187777, 3.454145) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -5.839626, -25.07086) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1377753), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.290042, 0.0002493555) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -7.159229, 24.9594) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.09993961), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.525736, 2.494487) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 17.48746, -19.46407) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1281586), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.686502, 0.0001922491) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 16.05069, 19.24876) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4696551), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.14276, 9.040274) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -10.946, -19.53067) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4628757), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.025051, 0.0001932228) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -15.32156, 19.32228) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1378767), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.819405, 2.664044) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.37134, -24.0291) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1108674), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.687296, 0.0002391654) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.249614, 23.91654) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1568838), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.704151, 3.752287) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 23.28331, -6.928161) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5415995), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 15.87577, 6.724003E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 17.62621, 6.795529) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.226729), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 19.61985, 1.540878) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -15.30014, 6.750589) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4426361), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.8865, 4.528736) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.750587, -19.6424) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2305592), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 13.18222, 0.0001952448) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.472753, 19.57217) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.002434), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 12.7369, 19.6198) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -5.33831, -19.48888) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.7929868), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.419057, 4.16536) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -23.02034, -1.586958) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2246498), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.000250105, 3.808835) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 24.99714, -1.572675) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1788682), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.314614, 3.527739) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.09929, 20.58879) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.7816031), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 9.211795, 19.61979) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.427216, -20.55026) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.9547223), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.058162, 0.0002044376) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -6.902648, 20.44376) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2043911), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.442544, 4.178548) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 13.22719, -17.90403) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.233386), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.262522, 0.0001770008) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.84221, 17.74776) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4721227), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 12.28793, 8.379155) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -12.22817, -14.21008) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5896627), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.371777, 0.0001400589) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -17.75392, 14.00589) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1808783), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0001780728, 2.53363) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 17.78795, 12.75767) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.339301), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 15.02542, 19.61987) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.623549, -12.68671) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5710809), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 16.06627, 12.37468) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.29918, -5.410871) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3758278), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 19.61992, 10.34107) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -7.537445, -5.357656) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5498449), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 13.99255, 7.395328) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -1.80683, 13.73323) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.8901526), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.497512, 19.61986) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -10.42943, -13.59016) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2104124), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.085816, 16.76016) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -5.285142, -16.85733) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.698581), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0001051595, 4.983803) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.49216, -14.57131) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3420286), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.014989, 0.0001446568) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.085127, 14.46568) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2505379), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.482346, 3.624316) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.64452, -3.182668) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.138767), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.79832, 3.069148E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.42739, 3.140674) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.261231), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.31868, 3.961057) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.140674, -8.945286) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4428095), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.74761, 8.878566E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -1.200725, 8.92625) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3679302), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.64192, 3.284277) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.92625, -4.81012) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.682785), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.44996, 4.729227E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.212746, 4.776911) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.9691768), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.98726, 4.629645) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.776911, -7.294877) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.6346434), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 13.04329, 7.224429E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -1.444419, 7.272113) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5074097), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.04758, 3.689949) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.272113, -6.422107) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5745698), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 13.60665, 6.348934E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.629092, 6.396618) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.7429182), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 12.10979, 4.752171) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.396617, -5.658934) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.8397644), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.0224, 5.582916E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -1.83225, 5.630599) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.6312054), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.91168, 3.55404) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.630599, -8.024374) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4429057), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 12.44332, 7.9564E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.282444, 8.004084) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5421413), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.697, 4.339384) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.004084, -4.035961) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.07518), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.63257, 3.904473E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -2.520668, 3.99984) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.7227589), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.2485, 2.890863) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.99984, -9.610931) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3007891), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.00784, 9.546617E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.047284, 9.5943) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3548257), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.762, 3.404376) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 9.594299, -2.433555) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.398931), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.58459, 2.345659E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -4.060983, 2.393343) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.173249), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.068203, 2.807865) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -5.631238, -14.47211) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.194019), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.790921, 0.0001436155) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -7.477002, 14.36155) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2104654), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.190275E-05, 3.022877) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.196284, 12.33656) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.345361), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.148965, 19.61988) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -4.971041, -12.26093) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3268713), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.422212E-05, 15.61202) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.41034, -11.11049) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.40516), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.727924, 0.0001111375) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -6.321439, 11.01838) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.106372), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.326775E-05, 1.172253) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.329431, 9.469191) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.290414), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.318291E-05, 13.39154) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.31834, 10.94849) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5688878), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.575984, 19.61989) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.733199, -10.92106) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.9225922), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.242024E-05, 9.544113) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.289756, -9.387285) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.016706), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.324602, 9.331409E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -3.662205, 9.331409) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2665415), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.402976E-05, 2.487381) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.397064, 8.023324) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.100329), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.64054E-05, 11.31575) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.640589, 6.898616) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.9461036), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.206955E-05, 17.84262) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.207005, 6.253925) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2842029), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.799516, 19.61994) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.413935, -6.231718) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5728211), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.801053E-05, 16.05022) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.813024, -5.650228) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.7773848), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.303209E-05, 11.65777) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.279417, -4.859393) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.6685966), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.844296E-05, 8.408755) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.820503, -4.179256) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5750363), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.4377E-05, 6.005496) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.425828, -3.594323) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4945723), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.086349E-05, 4.227811) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.086398, -3.091268) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4253715), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.794431E-05, 2.912848) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.79448, -2.658629) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3658572), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.543375E-05, 1.940146) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.543425, -2.28655) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3146735), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.330442E-05, 1.220609) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.327511, -1.966554) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2706544), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.141771E-05, 0.688336) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.14182, -1.69135) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.232797), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 9.820731E-06, 0.2945802) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.9821221, -1.454668) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2002388), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.44729E-06, 0.003286785) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.8447781, -1.251116) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.002627082), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002202011, 1.239552E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.8114513, 1.239575) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1681041), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.204322E-06, 0.2084007) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.7204813, 1.066187) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1468971), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.197441E-06, 0.3650296) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.6197932, 0.9170609) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1263695), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.331456E-06, 0.480926) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.5331947, 0.7888028) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1087143), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.582926E-06, 0.5666869) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.4587142, 0.6784922) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0935297), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.946068E-06, 0.6301519) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.3946559, 0.5836178) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.08046991), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.391399E-06, 0.6771206) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.3395615, 0.5020194) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.06923762), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.921276E-06, 0.7118835) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.2921766, 0.4318393) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0595771), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.513734E-06, 0.737615) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.2514225, 0.3714797) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0512684), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.163221E-06, 0.7566634) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.2163712, 0.3195664) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.04412237), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.862688E-06, 0.7707661) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.1862247, 0.2749174) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.03797631), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.602478E-06, 0.7812089) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.1602968, 0.2365163) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.03269029), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.379015E-06, 0.7889427) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.1379971, 0.2034888) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.02814396), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.18792E-06, 0.7946714) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.1188178, 0.175083) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.02423381), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.022733E-06, 0.7989158) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.1023224, 0.150652) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.02087083), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.80862E-07, 0.8020613) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.08813525, 0.1296397) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.01797844), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.589597E-07, 0.8043932) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.07593338, 0.1115677) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0154908), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.537832E-07, 0.8061224) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.06543901, 0.09602457) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.01335127), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.63641E-07, 0.8074053) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.05641315, 0.08265641) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.01151113), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.85955E-07, 0.8083575) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.04865037, 0.07115889) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.009928506), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.192195E-07, 0.8090646) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.04197391, 0.06127021) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.008567349), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.617982E-07, 0.80959) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.03623178, 0.05276527) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.007396676), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.124417E-07, 0.8099808) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.03129322, 0.04545041) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.006389831), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.699823E-07, 0.8102716) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.02704583, 0.03915911) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.005523895), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.334384E-07, 0.8104883) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0233929, 0.03374812) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.004779152), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.020291E-07, 0.8106499) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.02025124, 0.02909426) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.004138645), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.750029E-07, 0.8107705) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.01754934, 0.02509158) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.003587792), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.517663E-07, 0.8108608) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.01522568, 0.02164893) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.003114051), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.317795E-07, 0.8109283) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.01322737, 0.01868795) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.002706637), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.145984E-07, 0.8109791) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.01150889, 0.01614122) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.002356275), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 9.982086E-08, 0.8110173) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.01003114, 0.01395076) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.002054987), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.711405E-08, 0.8110461) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.008760455, 0.0120667) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001795915), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.618684E-08, 0.8110679) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007667916, 0.01044615) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001573159), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.679592E-08, 0.8110844) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006728643, 0.009052214) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001381649), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.872202E-08, 0.811097) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005921252, 0.007853162) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001217024), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.178306E-08, 0.8111066) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005227356, 0.006821695) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001075536), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.582106E-08, 0.811114) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004631156, 0.005934337) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009539629), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.070063E-08, 0.8111197) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004119067, 0.005170891) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008495366), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.630378E-08, 0.8111242) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003679428, 0.004513982) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007598784), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.253185E-08, 0.8111277) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003302213, 0.003948665) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006829454), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.929792E-08, 0.8111305) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00297882, 0.003462082) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006169838), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.652802E-08, 0.8111327) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002701863, 0.003043171) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000560488), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.415967E-08, 0.8111344) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002465006, 0.002682415) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005121666), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.213766E-08, 0.8111358) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002262817, 0.002371624) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004709127), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.041587E-08, 0.8111369) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002090637, 0.002103754) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000435777), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.895421E-08, 0.8111378) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001944477, 0.001872743) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004059467), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.771862E-08, 0.8111386) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001820918, 0.001673379) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003807253), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.667983E-08, 0.8111392) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001717033, 0.001501177) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003595165), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.58127E-08, 0.8111398) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001630314, 0.001352282) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003418096), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.509563E-08, 0.8111402) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001558613, 0.001223379) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003271669), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.451029E-08, 0.8111407) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001500085, 0.001111624) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003152128), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.404092E-08, 0.811141) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001453148, 0.001014572) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003056248), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.367392E-08, 0.8111413) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00141644, 0.0009301305) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002981256), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.339735E-08, 0.8111416) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001388788, 0.0008565031) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000292476), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.320126E-08, 0.8111418) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001369179, 0.0007921541) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002884693), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.307687E-08, 0.8111421) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001356734, 0.0007357697) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002859265), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.30164E-08, 0.8111423) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001350693, 0.0006862283) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002846919), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.301342E-08, 0.8111425) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001350389, 0.000642572) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.00028463), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.306193E-08, 0.8111427) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001355246, 0.0006039842) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002856223), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.3157E-08, 0.8111429) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001364753, 0.0005697685) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000287565), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.329415E-08, 0.811143) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001378465, 0.0005393313) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002903669), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.346938E-08, 0.8111432) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001395991, 0.0005121662) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002939476), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.367931E-08, 0.8111434) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001416981, 0.0004878413) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002982362), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.392084E-08, 0.8111435) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001441131, 0.0004659877) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.00030317), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.419115E-08, 0.8111436) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001468168, 0.0004462903) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000308693), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.448797E-08, 0.8111438) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001497847, 0.000428479) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003147557), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.480899E-08, 0.8111439) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001529955, 0.0004123223) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003213138), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.515247E-08, 0.811144) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001564297, 0.0003976213) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003283278), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.551645E-08, 0.8111441) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001600701, 0.0003842046) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003357622), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.589954E-08, 0.8111442) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001639009, 0.0003719244) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003435851), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.630033E-08, 0.8111444) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001679083, 0.0003606528) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003517679), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.671746E-08, 0.8111445) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001720796, 0.0003502789) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003602849), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.71499E-08, 0.8111446) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001764034, 0.0003407062) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003691125), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.759643E-08, 0.8111447) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001808693, 0.0003318506) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003782297), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.805629E-08, 0.8111448) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001854679, 0.0003236387) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003876172), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.852857E-08, 0.8111449) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001901907, 0.000316006) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003972576), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.901248E-08, 0.8111451) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001950298, 0.0003088959) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004071349), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.950731E-08, 0.8111452) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001999781, 0.0003022585) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004172344), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.00124E-08, 0.8111453) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00205029, 0.0002960498) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000427543), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.052722E-08, 0.8111454) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002101766, 0.0002902308) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004380484), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.105105E-08, 0.8111455) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002154155, 0.0002847669) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004487394), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.158354E-08, 0.8111457) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002207404, 0.0002796271) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004596055), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.212418E-08, 0.8111458) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002261468, 0.000274784) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004706375), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.267253E-08, 0.8111459) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002316303, 0.0002702131) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004818264), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.322831E-08, 0.811146) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002371869, 0.0002658922) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004931641), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.37908E-08, 0.8111461) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00242813, 0.0002618015) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005046431), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.43599E-08, 0.8111463) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002485052, 0.0002579232) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005162564), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.493551E-08, 0.8111464) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002542601, 0.0002542413) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005279974), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.551699E-08, 0.8111465) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002600749, 0.0002507411) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005398603), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.610406E-08, 0.8111466) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002659468, 0.0002474094) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005518393), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.669681E-08, 0.8111467) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002718731, 0.0002442343) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005639291), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.729477E-08, 0.8111469) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002778516, 0.0002412049) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005761249), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.789739E-08, 0.811147) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0028388, 0.0002383113) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005884222), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.850522E-08, 0.8111471) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00289956, 0.0002355444) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006008164), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.911729E-08, 0.8111472) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002960779, 0.0002328959) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006133038), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.973374E-08, 0.8111473) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003022436, 0.0002303582) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006258803), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.035464E-08, 0.8111475) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003084514, 0.0002279245) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006385426), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.097946E-08, 0.8111476) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003146996, 0.0002255881) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000651287), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.16084E-08, 0.8111477) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003209868, 0.0002233434) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006641107), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.224065E-08, 0.8111478) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003273115, 0.0002211848) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006770107), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.28765E-08, 0.811148) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003336722, 0.0002191074) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006899839), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.351627E-08, 0.8111482) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003400677, 0.0002171064) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007030278), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.415894E-08, 0.8111483) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003464967, 0.0002151776) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007161399), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.48053E-08, 0.8111485) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00352958, 0.0002133171) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007293177), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.545456E-08, 0.8111487) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003594506, 0.0002115211) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007425591), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.610684E-08, 0.8111489) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003659734, 0.0002097862) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007558619), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.676226E-08, 0.8111491) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003725253, 0.0002081093) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007692242), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.741983E-08, 0.8111492) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003791056, 0.0002064873) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007826439), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.808081E-08, 0.8111494) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003857131, 0.0002049174) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007961191), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.874399E-08, 0.8111496) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003923472, 0.0002033971) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008096482), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.941041E-08, 0.8111498) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003990068, 0.000201924) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008232295), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.007862E-08, 0.81115) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004056912, 0.0002004957) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008368612), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.074971E-08, 0.8111501) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004123999, 0.0001991102) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008505422), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.142292E-08, 0.8111503) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004191319, 0.0001977655) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008642707), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.209819E-08, 0.8111505) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004258869, 0.0001964597) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008780457), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.277588E-08, 0.8111507) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004326638, 0.000195191) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008918655), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.345571E-08, 0.8111508) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004394621, 0.0001939578) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009057288), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.413718E-08, 0.811151) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004462813, 0.0001927586) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009196345), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.482203E-08, 0.8111512) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004531207, 0.0001915918) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009335818), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.550752E-08, 0.8111514) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004599802, 0.0001904562) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009475693), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.619537E-08, 0.8111516) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004668587, 0.0001893503) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009615958), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.688509E-08, 0.8111517) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004737559, 0.000188273) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009756604), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.757619E-08, 0.8111519) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004806715, 0.0001872231) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009897621), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.826996E-08, 0.8111521) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004876046, 0.0001861995) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0010039), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.896458E-08, 0.8111523) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004945554, 0.0001852013) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001018073), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.966179E-08, 0.8111525) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005015229, 0.0001842272) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001032281), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.036019E-08, 0.8111526) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005085069, 0.0001832766) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001046522), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.105976E-08, 0.8111528) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005155072, 0.0001823483) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001060796), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.176225E-08, 0.811153) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005225229, 0.0001814417) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001075102), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.246446E-08, 0.8111532) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005295542, 0.0001805559) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001089439), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.316955E-08, 0.8111534) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005366005, 0.0001796902) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001103807), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.387609E-08, 0.8111535) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005436614, 0.0001788438) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001118205), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.458318E-08, 0.8111537) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005507368, 0.0001780161) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001132632), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.529209E-08, 0.8111539) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005578259, 0.0001772063) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001147087), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.60024E-08, 0.8111541) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00564929, 0.0001764139) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.00116157), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.671448E-08, 0.8111542) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005720453, 0.0001756383) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001176081), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.742698E-08, 0.8111544) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005791748, 0.0001748788) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001190618), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.814076E-08, 0.8111546) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005863171, 0.0001741351) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001205181), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.885625E-08, 0.8111548) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00593472, 0.0001734065) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.00121977), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.957342E-08, 0.8111551) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006006392, 0.0001726925) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001234384), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.029135E-08, 0.8111553) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006078185, 0.0001719927) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001249023), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.101046E-08, 0.8111556) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006150096, 0.0001713067) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001263685), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.173074E-08, 0.8111558) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006222124, 0.0001706339) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001278372), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.245215E-08, 0.811156) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006294266, 0.0001699741) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001293081), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.317561E-08, 0.8111563) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00636652, 0.0001693267) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001307814), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.389834E-08, 0.8111565) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006438884, 0.0001686915) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001322569), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.462306E-08, 0.8111567) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006511356, 0.000168068) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001337345), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.534971E-08, 0.811157) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00658393, 0.0001674558) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001352143), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.607561E-08, 0.8111572) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006656611, 0.0001668547) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001366962), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.68043E-08, 0.8111575) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00672939, 0.0001662643) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001381801), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.753218E-08, 0.8111577) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006802268, 0.0001656843) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001396661), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.826195E-08, 0.8111579) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006875245, 0.0001651144) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.00141154), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.899268E-08, 0.8111582) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006948318, 0.0001645544) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001426439), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.972437E-08, 0.8111584) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007021488, 0.000164004) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001441358), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.045605E-08, 0.8111587) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007094746, 0.0001634628) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001456295), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.118957E-08, 0.8111589) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007168098, 0.0001629307) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001471251), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.192487E-08, 0.8111591) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007241537, 0.0001624074) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001486225), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.266016E-08, 0.8111594) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007315067, 0.0001618926) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001501217), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.339725E-08, 0.8111596) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007388685, 0.0001613862) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001516227), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.413337E-08, 0.8111598) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007462387, 0.0001608879) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001531254), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.487125E-08, 0.8111601) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007536175, 0.0001603975) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001546299), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.560991E-08, 0.8111603) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007610042, 0.0001599148) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001561359), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.634941E-08, 0.8111606) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007683991, 0.0001594396) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001576437)}" + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1134{t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.71507, 18.63876) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.3575, -24.0345) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2859854), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 16.41822, 11.76509) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 18.17429, -15.64585) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1854527), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 19.61984, 8.863367) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -16.15633, -15.4558) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5734656), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.74145, 0.0001512584) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -21.45141, 15.22121) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2155912), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.888747, 3.281431) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.38822, -27.80841) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1180014), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.984262, 0.0002780475) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.2305991, 27.80475) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1191256), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.94236, 3.31239) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 23.42652, -14.6) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2268761), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 9.005012, 0.0001435129) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 20.87433, 14.37513) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.590435), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 19.61985, 8.487865) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -14.8994, 14.20093) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.691238), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.977393, 18.30397) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 23.09713, -11.65444) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3922241), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 15.28206, 13.7326) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.4603704, -22.11528) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.6209553), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 13.67658, 0.0002202752) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -5.608852, 22.02752) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2200489), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 12.20507, 4.847275) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 22.02752, -7.767531) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3665375), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 19.61982, 2.000106) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -18.31479, -7.718225) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2591408), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.54411, 7.497284E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -20.45319, 7.56881) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.456389), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.187777, 3.454145) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -5.839626, -25.07086) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1377753), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.290042, 0.0002493555) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -7.159229, 24.9594) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.09993961), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.525736, 2.494487) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 17.48746, -19.46407) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1281586), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.686502, 0.0001922491) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 16.05069, 19.24876) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4696551), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.14276, 9.040274) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -10.946, -19.53067) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4628757), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.025051, 0.0001932228) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -15.32156, 19.32228) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1378767), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.819405, 2.664044) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.37134, -24.0291) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1108674), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.687296, 0.0002391654) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.249614, 23.91654) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1568838), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.704151, 3.752287) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 23.28331, -6.928161) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5415995), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 15.87577, 6.724003E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 17.62621, 6.795529) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.226729), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 19.61985, 1.540878) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -15.30014, 6.750589) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4426361), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.8865, 4.528736) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.750587, -19.6424) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2305592), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 13.18222, 0.0001952448) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.472753, 19.57217) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.002434), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 12.7369, 19.6198) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -5.33831, -19.48888) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.7929868), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.419057, 4.16536) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -23.02034, -1.586958) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2246498), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.000250105, 3.808835) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 24.99714, -1.572675) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1788682), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.314614, 3.527739) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.09929, 20.58879) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.7816031), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 9.211795, 19.61979) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.427216, -20.55026) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.9547223), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.058162, 0.0002044376) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -6.902648, 20.44376) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2043911), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.442544, 4.178548) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 13.22719, -17.90403) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.233386), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.262522, 0.0001770008) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.84221, 17.74776) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4721227), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 12.28793, 8.379155) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -12.22817, -14.21008) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5896627), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.371777, 0.0001400589) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -17.75392, 14.00589) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1808783), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0001780728, 2.53363) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 17.78795, 12.75767) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.339301), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 15.02542, 19.61987) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.623549, -12.68671) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5710809), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 16.06627, 12.37468) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.29918, -5.410871) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3758278), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 19.61992, 10.34107) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -7.537445, -5.357656) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5498449), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 13.99255, 7.395328) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -1.80683, 13.73323) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.8901526), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.497512, 19.61986) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -10.42943, -13.59016) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2104124), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.085816, 16.76016) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -5.285142, -16.85733) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.698581), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0001051595, 4.983803) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.49216, -14.57131) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3420286), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.014989, 0.0001446568) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.085127, 14.46568) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2505379), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.482346, 3.624316) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.64452, -3.182668) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.138767), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.79832, 3.069148E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.42739, 3.140674) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.261231), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.31868, 3.961057) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.140674, -8.945286) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4428095), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.74761, 8.878566E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -1.200725, 8.92625) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3679302), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.64192, 3.284277) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.92625, -4.81012) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.682785), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.44996, 4.729227E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.212746, 4.776911) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.9691768), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.98726, 4.629645) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.776911, -7.294877) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.6346434), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 13.04329, 7.224429E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -1.444419, 7.272113) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5074097), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.04758, 3.689949) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.272113, -6.422107) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5745698), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 13.60665, 6.348934E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.629092, 6.396618) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.7429182), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 12.10979, 4.752171) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.396617, -5.658934) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.8397644), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.0224, 5.582916E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -1.83225, 5.630599) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.6312054), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.91168, 3.55404) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.630599, -8.024374) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4429057), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 12.44332, 7.9564E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.282444, 8.004084) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5421413), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.697, 4.339384) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.004084, -4.035961) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.07518), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.63257, 3.904473E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -2.520668, 3.99984) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.7227589), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.2485, 2.890863) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.99984, -9.610931) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3007891), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.00784, 9.546617E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.047284, 9.5943) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3548257), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.762, 3.404376) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 9.594299, -2.433555) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.398931), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.58459, 2.345659E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -4.060983, 2.393343) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.173249), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.068203, 2.807865) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -5.631238, -14.47211) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.194019), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.790921, 0.0001436155) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -7.477002, 14.36155) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2104654), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.190275E-05, 3.022877) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.196284, 12.33656) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.345361), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.148965, 19.61988) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -4.971041, -12.26093) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3268713), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.422212E-05, 15.61202) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.41034, -11.11049) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.40516), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.727924, 0.0001111375) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -6.321439, 11.01838) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.106372), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.326775E-05, 1.172253) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.329431, 9.469191) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.290414), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.318291E-05, 13.39154) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.31834, 10.94849) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5688878), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.575984, 19.61989) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.733199, -10.92106) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.9225922), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.242024E-05, 9.544113) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.289756, -9.387285) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.016706), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.324602, 9.331409E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -3.662205, 9.331409) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2665415), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.402976E-05, 2.487381) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.397064, 8.023324) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.100329), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.64054E-05, 11.31575) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.640589, 6.898616) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.9461036), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.206955E-05, 17.84262) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.207005, 6.253925) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2842029), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.799516, 19.61994) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.413935, -6.231718) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5728211), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.801053E-05, 16.05022) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.813024, -5.650228) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.7773848), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.303209E-05, 11.65777) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.279417, -4.859393) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.6685966), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.844296E-05, 8.408755) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.820503, -4.179256) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5750363), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.4377E-05, 6.005496) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.425828, -3.594323) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4945723), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.086349E-05, 4.227811) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.086398, -3.091268) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4253715), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.794431E-05, 2.912848) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.79448, -2.658629) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3658572), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.543375E-05, 1.940146) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.543425, -2.28655) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3146735), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.330442E-05, 1.220609) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.327511, -1.966554) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2706544), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.141771E-05, 0.688336) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.14182, -1.69135) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.232797), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 9.820731E-06, 0.2945802) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.9821221, -1.454668) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2002388), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.44729E-06, 0.003286785) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.8447781, -1.251116) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.002627082), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002202011, 1.239552E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.8114513, 1.239575) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1681041), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.204322E-06, 0.2084007) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.7204813, 1.066187) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1468971), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.197441E-06, 0.3650296) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.6197932, 0.9170609) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1263695), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.331456E-06, 0.480926) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.5331947, 0.7888028) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1087143), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.582926E-06, 0.5666869) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.4587142, 0.6784922) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0935297), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.946068E-06, 0.6301519) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.3946559, 0.5836178) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.08046991), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.391399E-06, 0.6771206) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.3395615, 0.5020194) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.06923762), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.921276E-06, 0.7118835) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.2921766, 0.4318393) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0595771), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.513734E-06, 0.737615) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.2514225, 0.3714797) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0512684), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.163221E-06, 0.7566634) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.2163712, 0.3195664) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.04412237), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.862688E-06, 0.7707661) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.1862247, 0.2749174) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.03797631), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.602478E-06, 0.7812089) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.1602968, 0.2365163) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.03269029), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.379015E-06, 0.7889427) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.1379971, 0.2034888) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.02814396), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.18792E-06, 0.7946714) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.1188178, 0.175083) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.02423381), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.022733E-06, 0.7989158) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.1023224, 0.150652) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.02087083), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.80862E-07, 0.8020613) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.08813525, 0.1296397) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.01797844), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.589597E-07, 0.8043932) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.07593338, 0.1115677) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0154908), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.537832E-07, 0.8061224) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.06543901, 0.09602457) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.01335127), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.63641E-07, 0.8074053) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.05641315, 0.08265641) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.01151113), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.85955E-07, 0.8083575) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.04865037, 0.07115889) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.009928506), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.192195E-07, 0.8090646) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.04197391, 0.06127021) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.008567349), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.617982E-07, 0.80959) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.03623178, 0.05276527) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.007396676), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.124417E-07, 0.8099808) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.03129322, 0.04545041) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.006389831), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.699823E-07, 0.8102716) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.02704583, 0.03915911) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.005523895), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.334384E-07, 0.8104883) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0233929, 0.03374812) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.004779152), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.020291E-07, 0.8106499) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.02025124, 0.02909426) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.004138645), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.750029E-07, 0.8107705) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.01754934, 0.02509158) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.003587792), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.517663E-07, 0.8108608) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.01522568, 0.02164893) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.003114051), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.317795E-07, 0.8109283) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.01322737, 0.01868795) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.002706637), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.145984E-07, 0.8109791) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.01150889, 0.01614122) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.002356275), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 9.982086E-08, 0.8110173) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.01003114, 0.01395076) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.002054987), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.711405E-08, 0.8110461) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.008760455, 0.0120667) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001795915), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.618684E-08, 0.8110679) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007667916, 0.01044615) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001573159), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.679592E-08, 0.8110844) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006728643, 0.009052214) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001381649), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.872202E-08, 0.811097) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005921252, 0.007853162) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001217024), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.178306E-08, 0.8111066) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005227356, 0.006821695) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001075536), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.582106E-08, 0.811114) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004631156, 0.005934337) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009539629), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.070063E-08, 0.8111197) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004119067, 0.005170891) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008495366), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.630378E-08, 0.8111242) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003679428, 0.004513982) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007598784), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.253185E-08, 0.8111277) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003302213, 0.003948665) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006829454), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.929792E-08, 0.8111305) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00297882, 0.003462082) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006169838), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.652802E-08, 0.8111327) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002701863, 0.003043171) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000560488), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.415967E-08, 0.8111344) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002465006, 0.002682415) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005121666), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.213766E-08, 0.8111358) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002262817, 0.002371624) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004709127), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.041587E-08, 0.8111369) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002090637, 0.002103754) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000435777), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.895421E-08, 0.8111378) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001944477, 0.001872743) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004059467), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.771862E-08, 0.8111386) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001820918, 0.001673379) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003807253), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.667983E-08, 0.8111392) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001717033, 0.001501177) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003595165), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.58127E-08, 0.8111398) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001630314, 0.001352282) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003418096), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.509563E-08, 0.8111402) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001558613, 0.001223379) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003271669), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.451029E-08, 0.8111407) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001500085, 0.001111624) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003152128), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.404092E-08, 0.811141) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001453148, 0.001014572) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003056248), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.367392E-08, 0.8111413) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00141644, 0.0009301305) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002981256), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.339735E-08, 0.8111416) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001388788, 0.0008565031) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000292476), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.320126E-08, 0.8111418) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001369179, 0.0007921541) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002884693), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.307687E-08, 0.8111421) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001356734, 0.0007357697) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002859265), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.30164E-08, 0.8111423) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001350693, 0.0006862283) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002846919), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.301342E-08, 0.8111425) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001350389, 0.000642572) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.00028463), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.306193E-08, 0.8111427) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001355246, 0.0006039842) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002856223), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.3157E-08, 0.8111429) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001364753, 0.0005697685) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000287565), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.329415E-08, 0.811143) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001378465, 0.0005393313) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002903669), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.346938E-08, 0.8111432) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001395991, 0.0005121662) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002939476), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.367931E-08, 0.8111434) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001416981, 0.0004878413) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002982362), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.392084E-08, 0.8111435) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001441131, 0.0004659877) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.00030317), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.419115E-08, 0.8111436) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001468168, 0.0004462903) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000308693), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.448797E-08, 0.8111438) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001497847, 0.000428479) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003147557), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.480899E-08, 0.8111439) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001529955, 0.0004123223) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003213138), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.515247E-08, 0.811144) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001564297, 0.0003976213) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003283278), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.551645E-08, 0.8111441) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001600701, 0.0003842046) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003357622), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.589954E-08, 0.8111442) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001639009, 0.0003719244) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003435851), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.630033E-08, 0.8111444) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001679083, 0.0003606528) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003517679), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.671746E-08, 0.8111445) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001720796, 0.0003502789) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003602849), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.71499E-08, 0.8111446) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001764034, 0.0003407062) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003691125), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.759643E-08, 0.8111447) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001808693, 0.0003318506) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003782297), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.805629E-08, 0.8111448) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001854679, 0.0003236387) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003876172), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.852857E-08, 0.8111449) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001901907, 0.000316006) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003972576), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.901248E-08, 0.8111451) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001950298, 0.0003088959) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004071349), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.950731E-08, 0.8111452) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001999781, 0.0003022585) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004172344), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.00124E-08, 0.8111453) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00205029, 0.0002960498) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000427543), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.052722E-08, 0.8111454) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002101766, 0.0002902308) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004380484), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.105105E-08, 0.8111455) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002154155, 0.0002847669) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004487394), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.158354E-08, 0.8111457) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002207404, 0.0002796271) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004596055), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.212418E-08, 0.8111458) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002261468, 0.000274784) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004706375), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.267253E-08, 0.8111459) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002316303, 0.0002702131) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004818264), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.322831E-08, 0.811146) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002371869, 0.0002658922) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004931641), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.37908E-08, 0.8111461) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00242813, 0.0002618015) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005046431), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.43599E-08, 0.8111463) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002485052, 0.0002579232) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005162564), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.493551E-08, 0.8111464) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002542601, 0.0002542413) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005279974), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.551699E-08, 0.8111465) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002600749, 0.0002507411) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005398603), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.610406E-08, 0.8111466) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002659468, 0.0002474094) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005518393), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.669681E-08, 0.8111467) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002718731, 0.0002442343) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005639291), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.729477E-08, 0.8111469) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002778516, 0.0002412049) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005761249), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.789739E-08, 0.811147) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0028388, 0.0002383113) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005884222), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.850522E-08, 0.8111471) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00289956, 0.0002355444) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006008164), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.911729E-08, 0.8111472) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002960779, 0.0002328959) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006133038), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.973374E-08, 0.8111473) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003022436, 0.0002303582) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006258803), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.035464E-08, 0.8111475) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003084514, 0.0002279245) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006385426), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.097946E-08, 0.8111476) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003146996, 0.0002255881) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000651287), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.16084E-08, 0.8111477) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003209868, 0.0002233434) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006641107), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.224065E-08, 0.8111478) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003273115, 0.0002211848) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006770107), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.28765E-08, 0.811148) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003336722, 0.0002191074) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006899839), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.351627E-08, 0.8111482) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003400677, 0.0002171064) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007030278), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.415894E-08, 0.8111483) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003464967, 0.0002151776) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007161399), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.48053E-08, 0.8111485) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00352958, 0.0002133171) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007293177), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.545456E-08, 0.8111487) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003594506, 0.0002115211) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007425591), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.610684E-08, 0.8111489) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003659734, 0.0002097862) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007558619), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.676226E-08, 0.8111491) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003725253, 0.0002081093) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007692242), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.741983E-08, 0.8111492) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003791056, 0.0002064873) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007826439), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.808081E-08, 0.8111494) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003857131, 0.0002049174) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007961191), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.874399E-08, 0.8111496) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003923472, 0.0002033971) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008096482), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.941041E-08, 0.8111498) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003990068, 0.000201924) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008232295), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.007862E-08, 0.81115) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004056912, 0.0002004957) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008368612), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.074971E-08, 0.8111501) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004123999, 0.0001991102) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008505422), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.142292E-08, 0.8111503) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004191319, 0.0001977655) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008642707), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.209819E-08, 0.8111505) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004258869, 0.0001964597) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008780457), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.277588E-08, 0.8111507) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004326638, 0.000195191) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008918655), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.345571E-08, 0.8111508) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004394621, 0.0001939578) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009057288), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.413718E-08, 0.811151) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004462813, 0.0001927586) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009196345), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.482203E-08, 0.8111512) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004531207, 0.0001915918) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009335818), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.550752E-08, 0.8111514) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004599802, 0.0001904562) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009475693), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.619537E-08, 0.8111516) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004668587, 0.0001893503) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009615958), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.688509E-08, 0.8111517) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004737559, 0.000188273) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009756604), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.757619E-08, 0.8111519) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004806715, 0.0001872231) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009897621), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.826996E-08, 0.8111521) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004876046, 0.0001861995) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0010039), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.896458E-08, 0.8111523) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004945554, 0.0001852013) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001018073), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.966179E-08, 0.8111525) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005015229, 0.0001842272) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001032281), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.036019E-08, 0.8111526) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005085069, 0.0001832766) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001046522), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.105976E-08, 0.8111528) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005155072, 0.0001823483) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001060796), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.176225E-08, 0.811153) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005225229, 0.0001814417) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001075102), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.246446E-08, 0.8111532) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005295542, 0.0001805559) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001089439), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.316955E-08, 0.8111534) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005366005, 0.0001796902) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001103807), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.387609E-08, 0.8111535) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005436614, 0.0001788438) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001118205), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.458318E-08, 0.8111537) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005507368, 0.0001780161) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001132632), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.529209E-08, 0.8111539) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005578259, 0.0001772063) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001147087), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.60024E-08, 0.8111541) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00564929, 0.0001764139) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.00116157), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.671448E-08, 0.8111542) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005720453, 0.0001756383) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001176081), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.742698E-08, 0.8111544) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005791748, 0.0001748788) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001190618), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.814076E-08, 0.8111546) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005863171, 0.0001741351) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001205181), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.885625E-08, 0.8111548) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00593472, 0.0001734065) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.00121977), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.957342E-08, 0.8111551) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006006392, 0.0001726925) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001234384), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.029135E-08, 0.8111553) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006078185, 0.0001719927) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001249023), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.101046E-08, 0.8111556) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006150096, 0.0001713067) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001263685), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.173074E-08, 0.8111558) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006222124, 0.0001706339) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001278372), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.245215E-08, 0.811156) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006294266, 0.0001699741) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001293081), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.317561E-08, 0.8111563) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00636652, 0.0001693267) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001307814), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.389834E-08, 0.8111565) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006438884, 0.0001686915) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001322569), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.462306E-08, 0.8111567) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006511356, 0.000168068) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001337345), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.534971E-08, 0.811157) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00658393, 0.0001674558) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001352143), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.607561E-08, 0.8111572) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006656611, 0.0001668547) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001366962), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.68043E-08, 0.8111575) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00672939, 0.0001662643) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001381801), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.753218E-08, 0.8111577) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006802268, 0.0001656843) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001396661), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.826195E-08, 0.8111579) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006875245, 0.0001651144) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.00141154), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.899268E-08, 0.8111582) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006948318, 0.0001645544) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001426439), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.972437E-08, 0.8111584) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007021488, 0.000164004) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001441358), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.045605E-08, 0.8111587) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007094746, 0.0001634628) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001456295), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.118957E-08, 0.8111589) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007168098, 0.0001629307) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001471251), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.192487E-08, 0.8111591) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007241537, 0.0001624074) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001486225), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.266016E-08, 0.8111594) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007315067, 0.0001618926) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001501217), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.339725E-08, 0.8111596) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007388685, 0.0001613862) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001516227), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.413337E-08, 0.8111598) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007462387, 0.0001608879) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001531254), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.487125E-08, 0.8111601) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007536175, 0.0001603975) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001546299), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.560991E-08, 0.8111603) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007610042, 0.0001599148) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001561359), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.634941E-08, 0.8111606) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007683991, 0.0001594396) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001576437)}" ], "WorkflowGadgetDict": { "-1": null }, "MetaInf": { - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1624": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1098": { "workflow_id": 0, "active": true, "isImmutable": false }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1625": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1099": { "workflow_id": 1, "active": true, "isImmutable": false }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1626": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1100": { "workflow_id": 2, "active": true, "isImmutable": false }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1627": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1101": { "workflow_id": 3, "active": true, "isImmutable": false }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1628": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1102": { "workflow_id": 4, "active": true, "isImmutable": false }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1629": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1103": { "workflow_id": 5, "active": true, "isImmutable": false }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1630": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1104": { "workflow_id": 6, "active": true, "isImmutable": false }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1631": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1105": { "workflow_id": 7, "active": true, "isImmutable": false }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1632": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1106": { "workflow_id": 8, "active": true, "isImmutable": false }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1635": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1109": { "workflow_id": 9, "active": true, "isImmutable": false }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1636": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1110": { "workflow_id": 10, "active": true, "isImmutable": false }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1637": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1111": { "workflow_id": 11, "active": true, "isImmutable": false }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1638": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1112": { "workflow_id": 12, "active": true, "isImmutable": false }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1639": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1113": { "workflow_id": 13, "active": true, "isImmutable": false }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1640": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1114": { "workflow_id": 14, "active": true, "isImmutable": false }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1641": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1115": { "workflow_id": 15, "active": true, "isImmutable": false }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1642": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1116": { "workflow_id": 16, "active": true, "isImmutable": false }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1643": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1117": { "workflow_id": 17, "active": true, "isImmutable": false }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1644": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1118": { "workflow_id": 18, "active": true, "isImmutable": false }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1645": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1119": { "workflow_id": 19, "active": true, "isImmutable": false }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1646": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1120": { "workflow_id": 20, "active": true, "isImmutable": false }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1647": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1121": { "workflow_id": 21, "active": true, "isImmutable": false }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1648": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1122": { "workflow_id": 22, "active": true, "isImmutable": false }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1649": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1123": { "workflow_id": 23, "active": true, "isImmutable": false }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1650": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1124": { "workflow_id": 24, "active": true, "isImmutable": false }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1651": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1125": { "workflow_id": 25, "active": true, "isImmutable": false }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1652": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1126": { "workflow_id": 26, "active": true, "isImmutable": false }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1653": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1127": { "workflow_id": 27, "active": true, "isImmutable": false }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1656": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1130": { "workflow_id": 28, "active": true, "isImmutable": false }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1659": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1133": { "workflow_id": 29, "active": true, "isImmutable": false }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1660": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1134": { "workflow_id": 30, "active": true, "isImmutable": false @@ -1717,7 +1717,7 @@ "active": true, "isImmutable": false }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1660{t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.71507, 18.63876) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.3575, -24.0345) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2859854), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 16.41822, 11.76509) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 18.17429, -15.64585) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1854527), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 19.61984, 8.863367) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -16.15633, -15.4558) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5734656), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.74145, 0.0001512584) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -21.45141, 15.22121) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2155912), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.888747, 3.281431) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.38822, -27.80841) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1180014), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.984262, 0.0002780475) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.2305991, 27.80475) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1191256), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.94236, 3.31239) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 23.42652, -14.6) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2268761), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 9.005012, 0.0001435129) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 20.87433, 14.37513) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.590435), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 19.61985, 8.487865) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -14.8994, 14.20093) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.691238), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.977393, 18.30397) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 23.09713, -11.65444) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3922241), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 15.28206, 13.7326) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.4603704, -22.11528) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.6209553), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 13.67658, 0.0002202752) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -5.608852, 22.02752) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2200489), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 12.20507, 4.847275) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 22.02752, -7.767531) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3665375), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 19.61982, 2.000106) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -18.31479, -7.718225) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2591408), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.54411, 7.497284E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -20.45319, 7.56881) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.456389), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.187777, 3.454145) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -5.839626, -25.07086) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1377753), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.290042, 0.0002493555) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -7.159229, 24.9594) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.09993961), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.525736, 2.494487) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 17.48746, -19.46407) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1281586), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.686502, 0.0001922491) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 16.05069, 19.24876) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4696551), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.14276, 9.040274) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -10.946, -19.53067) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4628757), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.025051, 0.0001932228) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -15.32156, 19.32228) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1378767), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.819405, 2.664044) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.37134, -24.0291) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1108674), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.687296, 0.0002391654) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.249614, 23.91654) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1568838), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.704151, 3.752287) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 23.28331, -6.928161) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5415995), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 15.87577, 6.724003E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 17.62621, 6.795529) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.226729), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 19.61985, 1.540878) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -15.30014, 6.750589) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4426361), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.8865, 4.528736) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.750587, -19.6424) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2305592), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 13.18222, 0.0001952448) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.472753, 19.57217) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.002434), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 12.7369, 19.6198) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -5.33831, -19.48888) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.7929868), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.419057, 4.16536) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -23.02034, -1.586958) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2246498), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.000250105, 3.808835) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 24.99714, -1.572675) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1788682), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.314614, 3.527739) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.09929, 20.58879) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.7816031), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 9.211795, 19.61979) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.427216, -20.55026) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.9547223), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.058162, 0.0002044376) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -6.902648, 20.44376) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2043911), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.442544, 4.178548) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 13.22719, -17.90403) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.233386), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.262522, 0.0001770008) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.84221, 17.74776) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4721227), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 12.28793, 8.379155) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -12.22817, -14.21008) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5896627), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.371777, 0.0001400589) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -17.75392, 14.00589) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1808783), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0001780728, 2.53363) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 17.78795, 12.75767) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.339301), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 15.02542, 19.61987) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.623549, -12.68671) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5710809), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 16.06627, 12.37468) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.29918, -5.410871) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3758278), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 19.61992, 10.34107) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -7.537445, -5.357656) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5498449), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 13.99255, 7.395328) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -1.80683, 13.73323) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.8901526), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.497512, 19.61986) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -10.42943, -13.59016) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2104124), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.085816, 16.76016) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -5.285142, -16.85733) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.698581), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0001051595, 4.983803) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.49216, -14.57131) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3420286), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.014989, 0.0001446568) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.085127, 14.46568) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2505379), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.482346, 3.624316) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.64452, -3.182668) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.138767), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.79832, 3.069148E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.42739, 3.140674) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.261231), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.31868, 3.961057) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.140674, -8.945286) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4428095), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.74761, 8.878566E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -1.200725, 8.92625) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3679302), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.64192, 3.284277) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.92625, -4.81012) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.682785), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.44996, 4.729227E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.212746, 4.776911) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.9691768), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.98726, 4.629645) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.776911, -7.294877) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.6346434), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 13.04329, 7.224429E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -1.444419, 7.272113) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5074097), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.04758, 3.689949) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.272113, -6.422107) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5745698), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 13.60665, 6.348934E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.629092, 6.396618) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.7429182), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 12.10979, 4.752171) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.396617, -5.658934) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.8397644), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.0224, 5.582916E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -1.83225, 5.630599) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.6312054), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.91168, 3.55404) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.630599, -8.024374) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4429057), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 12.44332, 7.9564E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.282444, 8.004084) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5421413), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.697, 4.339384) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.004084, -4.035961) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.07518), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.63257, 3.904473E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -2.520668, 3.99984) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.7227589), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.2485, 2.890863) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.99984, -9.610931) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3007891), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.00784, 9.546617E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.047284, 9.5943) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3548257), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.762, 3.404376) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 9.594299, -2.433555) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.398931), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.58459, 2.345659E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -4.060983, 2.393343) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.173249), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.068203, 2.807865) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -5.631238, -14.47211) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.194019), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.790921, 0.0001436155) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -7.477002, 14.36155) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2104654), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.190275E-05, 3.022877) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.196284, 12.33656) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.345361), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.148965, 19.61988) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -4.971041, -12.26093) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3268713), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.422212E-05, 15.61202) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.41034, -11.11049) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.40516), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.727924, 0.0001111375) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -6.321439, 11.01838) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.106372), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.326775E-05, 1.172253) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.329431, 9.469191) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.290414), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.318291E-05, 13.39154) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.31834, 10.94849) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5688878), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.575984, 19.61989) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.733199, -10.92106) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.9225922), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.242024E-05, 9.544113) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.289756, -9.387285) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.016706), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.324602, 9.331409E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -3.662205, 9.331409) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2665415), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.402976E-05, 2.487381) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.397064, 8.023324) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.100329), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.64054E-05, 11.31575) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.640589, 6.898616) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.9461036), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.206955E-05, 17.84262) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.207005, 6.253925) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2842029), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.799516, 19.61994) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.413935, -6.231718) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5728211), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.801053E-05, 16.05022) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.813024, -5.650228) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.7773848), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.303209E-05, 11.65777) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.279417, -4.859393) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.6685966), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.844296E-05, 8.408755) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.820503, -4.179256) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5750363), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.4377E-05, 6.005496) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.425828, -3.594323) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4945723), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.086349E-05, 4.227811) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.086398, -3.091268) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4253715), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.794431E-05, 2.912848) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.79448, -2.658629) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3658572), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.543375E-05, 1.940146) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.543425, -2.28655) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3146735), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.330442E-05, 1.220609) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.327511, -1.966554) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2706544), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.141771E-05, 0.688336) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.14182, -1.69135) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.232797), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 9.820731E-06, 0.2945802) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.9821221, -1.454668) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2002388), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.44729E-06, 0.003286785) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.8447781, -1.251116) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.002627082), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002202011, 1.239552E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.8114513, 1.239575) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1681041), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.204322E-06, 0.2084007) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.7204813, 1.066187) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1468971), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.197441E-06, 0.3650296) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.6197932, 0.9170609) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1263695), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.331456E-06, 0.480926) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.5331947, 0.7888028) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1087143), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.582926E-06, 0.5666869) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.4587142, 0.6784922) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0935297), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.946068E-06, 0.6301519) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.3946559, 0.5836178) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.08046991), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.391399E-06, 0.6771206) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.3395615, 0.5020194) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.06923762), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.921276E-06, 0.7118835) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.2921766, 0.4318393) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0595771), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.513734E-06, 0.737615) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.2514225, 0.3714797) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0512684), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.163221E-06, 0.7566634) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.2163712, 0.3195664) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.04412237), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.862688E-06, 0.7707661) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.1862247, 0.2749174) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.03797631), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.602478E-06, 0.7812089) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.1602968, 0.2365163) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.03269029), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.379015E-06, 0.7889427) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.1379971, 0.2034888) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.02814396), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.18792E-06, 0.7946714) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.1188178, 0.175083) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.02423381), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.022733E-06, 0.7989158) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.1023224, 0.150652) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.02087083), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.80862E-07, 0.8020613) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.08813525, 0.1296397) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.01797844), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.589597E-07, 0.8043932) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.07593338, 0.1115677) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0154908), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.537832E-07, 0.8061224) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.06543901, 0.09602457) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.01335127), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.63641E-07, 0.8074053) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.05641315, 0.08265641) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.01151113), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.85955E-07, 0.8083575) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.04865037, 0.07115889) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.009928506), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.192195E-07, 0.8090646) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.04197391, 0.06127021) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.008567349), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.617982E-07, 0.80959) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.03623178, 0.05276527) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.007396676), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.124417E-07, 0.8099808) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.03129322, 0.04545041) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.006389831), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.699823E-07, 0.8102716) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.02704583, 0.03915911) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.005523895), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.334384E-07, 0.8104883) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0233929, 0.03374812) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.004779152), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.020291E-07, 0.8106499) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.02025124, 0.02909426) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.004138645), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.750029E-07, 0.8107705) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.01754934, 0.02509158) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.003587792), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.517663E-07, 0.8108608) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.01522568, 0.02164893) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.003114051), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.317795E-07, 0.8109283) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.01322737, 0.01868795) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.002706637), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.145984E-07, 0.8109791) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.01150889, 0.01614122) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.002356275), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 9.982086E-08, 0.8110173) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.01003114, 0.01395076) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.002054987), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.711405E-08, 0.8110461) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.008760455, 0.0120667) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001795915), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.618684E-08, 0.8110679) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007667916, 0.01044615) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001573159), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.679592E-08, 0.8110844) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006728643, 0.009052214) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001381649), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.872202E-08, 0.811097) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005921252, 0.007853162) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001217024), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.178306E-08, 0.8111066) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005227356, 0.006821695) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001075536), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.582106E-08, 0.811114) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004631156, 0.005934337) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009539629), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.070063E-08, 0.8111197) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004119067, 0.005170891) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008495366), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.630378E-08, 0.8111242) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003679428, 0.004513982) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007598784), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.253185E-08, 0.8111277) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003302213, 0.003948665) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006829454), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.929792E-08, 0.8111305) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00297882, 0.003462082) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006169838), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.652802E-08, 0.8111327) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002701863, 0.003043171) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000560488), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.415967E-08, 0.8111344) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002465006, 0.002682415) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005121666), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.213766E-08, 0.8111358) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002262817, 0.002371624) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004709127), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.041587E-08, 0.8111369) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002090637, 0.002103754) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000435777), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.895421E-08, 0.8111378) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001944477, 0.001872743) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004059467), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.771862E-08, 0.8111386) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001820918, 0.001673379) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003807253), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.667983E-08, 0.8111392) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001717033, 0.001501177) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003595165), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.58127E-08, 0.8111398) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001630314, 0.001352282) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003418096), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.509563E-08, 0.8111402) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001558613, 0.001223379) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003271669), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.451029E-08, 0.8111407) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001500085, 0.001111624) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003152128), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.404092E-08, 0.811141) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001453148, 0.001014572) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003056248), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.367392E-08, 0.8111413) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00141644, 0.0009301305) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002981256), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.339735E-08, 0.8111416) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001388788, 0.0008565031) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000292476), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.320126E-08, 0.8111418) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001369179, 0.0007921541) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002884693), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.307687E-08, 0.8111421) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001356734, 0.0007357697) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002859265), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.30164E-08, 0.8111423) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001350693, 0.0006862283) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002846919), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.301342E-08, 0.8111425) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001350389, 0.000642572) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.00028463), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.306193E-08, 0.8111427) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001355246, 0.0006039842) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002856223), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.3157E-08, 0.8111429) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001364753, 0.0005697685) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000287565), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.329415E-08, 0.811143) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001378465, 0.0005393313) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002903669), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.346938E-08, 0.8111432) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001395991, 0.0005121662) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002939476), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.367931E-08, 0.8111434) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001416981, 0.0004878413) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002982362), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.392084E-08, 0.8111435) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001441131, 0.0004659877) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.00030317), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.419115E-08, 0.8111436) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001468168, 0.0004462903) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000308693), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.448797E-08, 0.8111438) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001497847, 0.000428479) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003147557), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.480899E-08, 0.8111439) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001529955, 0.0004123223) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003213138), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.515247E-08, 0.811144) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001564297, 0.0003976213) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003283278), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.551645E-08, 0.8111441) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001600701, 0.0003842046) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003357622), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.589954E-08, 0.8111442) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001639009, 0.0003719244) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003435851), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.630033E-08, 0.8111444) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001679083, 0.0003606528) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003517679), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.671746E-08, 0.8111445) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001720796, 0.0003502789) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003602849), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.71499E-08, 0.8111446) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001764034, 0.0003407062) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003691125), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.759643E-08, 0.8111447) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001808693, 0.0003318506) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003782297), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.805629E-08, 0.8111448) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001854679, 0.0003236387) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003876172), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.852857E-08, 0.8111449) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001901907, 0.000316006) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003972576), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.901248E-08, 0.8111451) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001950298, 0.0003088959) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004071349), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.950731E-08, 0.8111452) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001999781, 0.0003022585) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004172344), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.00124E-08, 0.8111453) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00205029, 0.0002960498) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000427543), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.052722E-08, 0.8111454) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002101766, 0.0002902308) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004380484), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.105105E-08, 0.8111455) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002154155, 0.0002847669) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004487394), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.158354E-08, 0.8111457) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002207404, 0.0002796271) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004596055), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.212418E-08, 0.8111458) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002261468, 0.000274784) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004706375), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.267253E-08, 0.8111459) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002316303, 0.0002702131) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004818264), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.322831E-08, 0.811146) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002371869, 0.0002658922) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004931641), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.37908E-08, 0.8111461) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00242813, 0.0002618015) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005046431), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.43599E-08, 0.8111463) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002485052, 0.0002579232) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005162564), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.493551E-08, 0.8111464) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002542601, 0.0002542413) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005279974), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.551699E-08, 0.8111465) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002600749, 0.0002507411) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005398603), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.610406E-08, 0.8111466) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002659468, 0.0002474094) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005518393), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.669681E-08, 0.8111467) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002718731, 0.0002442343) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005639291), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.729477E-08, 0.8111469) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002778516, 0.0002412049) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005761249), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.789739E-08, 0.811147) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0028388, 0.0002383113) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005884222), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.850522E-08, 0.8111471) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00289956, 0.0002355444) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006008164), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.911729E-08, 0.8111472) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002960779, 0.0002328959) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006133038), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.973374E-08, 0.8111473) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003022436, 0.0002303582) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006258803), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.035464E-08, 0.8111475) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003084514, 0.0002279245) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006385426), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.097946E-08, 0.8111476) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003146996, 0.0002255881) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000651287), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.16084E-08, 0.8111477) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003209868, 0.0002233434) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006641107), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.224065E-08, 0.8111478) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003273115, 0.0002211848) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006770107), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.28765E-08, 0.811148) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003336722, 0.0002191074) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006899839), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.351627E-08, 0.8111482) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003400677, 0.0002171064) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007030278), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.415894E-08, 0.8111483) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003464967, 0.0002151776) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007161399), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.48053E-08, 0.8111485) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00352958, 0.0002133171) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007293177), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.545456E-08, 0.8111487) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003594506, 0.0002115211) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007425591), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.610684E-08, 0.8111489) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003659734, 0.0002097862) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007558619), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.676226E-08, 0.8111491) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003725253, 0.0002081093) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007692242), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.741983E-08, 0.8111492) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003791056, 0.0002064873) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007826439), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.808081E-08, 0.8111494) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003857131, 0.0002049174) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007961191), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.874399E-08, 0.8111496) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003923472, 0.0002033971) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008096482), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.941041E-08, 0.8111498) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003990068, 0.000201924) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008232295), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.007862E-08, 0.81115) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004056912, 0.0002004957) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008368612), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.074971E-08, 0.8111501) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004123999, 0.0001991102) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008505422), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.142292E-08, 0.8111503) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004191319, 0.0001977655) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008642707), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.209819E-08, 0.8111505) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004258869, 0.0001964597) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008780457), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.277588E-08, 0.8111507) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004326638, 0.000195191) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008918655), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.345571E-08, 0.8111508) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004394621, 0.0001939578) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009057288), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.413718E-08, 0.811151) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004462813, 0.0001927586) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009196345), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.482203E-08, 0.8111512) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004531207, 0.0001915918) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009335818), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.550752E-08, 0.8111514) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004599802, 0.0001904562) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009475693), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.619537E-08, 0.8111516) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004668587, 0.0001893503) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009615958), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.688509E-08, 0.8111517) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004737559, 0.000188273) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009756604), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.757619E-08, 0.8111519) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004806715, 0.0001872231) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009897621), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.826996E-08, 0.8111521) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004876046, 0.0001861995) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0010039), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.896458E-08, 0.8111523) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004945554, 0.0001852013) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001018073), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.966179E-08, 0.8111525) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005015229, 0.0001842272) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001032281), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.036019E-08, 0.8111526) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005085069, 0.0001832766) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001046522), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.105976E-08, 0.8111528) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005155072, 0.0001823483) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001060796), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.176225E-08, 0.811153) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005225229, 0.0001814417) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001075102), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.246446E-08, 0.8111532) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005295542, 0.0001805559) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001089439), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.316955E-08, 0.8111534) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005366005, 0.0001796902) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001103807), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.387609E-08, 0.8111535) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005436614, 0.0001788438) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001118205), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.458318E-08, 0.8111537) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005507368, 0.0001780161) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001132632), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.529209E-08, 0.8111539) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005578259, 0.0001772063) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001147087), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.60024E-08, 0.8111541) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00564929, 0.0001764139) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.00116157), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.671448E-08, 0.8111542) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005720453, 0.0001756383) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001176081), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.742698E-08, 0.8111544) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005791748, 0.0001748788) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001190618), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.814076E-08, 0.8111546) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005863171, 0.0001741351) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001205181), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.885625E-08, 0.8111548) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00593472, 0.0001734065) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.00121977), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.957342E-08, 0.8111551) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006006392, 0.0001726925) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001234384), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.029135E-08, 0.8111553) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006078185, 0.0001719927) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001249023), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.101046E-08, 0.8111556) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006150096, 0.0001713067) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001263685), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.173074E-08, 0.8111558) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006222124, 0.0001706339) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001278372), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.245215E-08, 0.811156) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006294266, 0.0001699741) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001293081), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.317561E-08, 0.8111563) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00636652, 0.0001693267) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001307814), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.389834E-08, 0.8111565) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006438884, 0.0001686915) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001322569), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.462306E-08, 0.8111567) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006511356, 0.000168068) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001337345), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.534971E-08, 0.811157) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00658393, 0.0001674558) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001352143), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.607561E-08, 0.8111572) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006656611, 0.0001668547) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001366962), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.68043E-08, 0.8111575) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00672939, 0.0001662643) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001381801), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.753218E-08, 0.8111577) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006802268, 0.0001656843) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001396661), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.826195E-08, 0.8111579) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006875245, 0.0001651144) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.00141154), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.899268E-08, 0.8111582) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006948318, 0.0001645544) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001426439), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.972437E-08, 0.8111584) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007021488, 0.000164004) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001441358), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.045605E-08, 0.8111587) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007094746, 0.0001634628) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001456295), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.118957E-08, 0.8111589) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007168098, 0.0001629307) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001471251), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.192487E-08, 0.8111591) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007241537, 0.0001624074) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001486225), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.266016E-08, 0.8111594) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007315067, 0.0001618926) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001501217), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.339725E-08, 0.8111596) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007388685, 0.0001613862) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001516227), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.413337E-08, 0.8111598) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007462387, 0.0001608879) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001531254), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.487125E-08, 0.8111601) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007536175, 0.0001603975) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001546299), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.560991E-08, 0.8111603) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007610042, 0.0001599148) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001561359), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.634941E-08, 0.8111606) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007683991, 0.0001594396) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001576437)}": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1134{t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.71507, 18.63876) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.3575, -24.0345) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2859854), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 16.41822, 11.76509) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 18.17429, -15.64585) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1854527), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 19.61984, 8.863367) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -16.15633, -15.4558) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5734656), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.74145, 0.0001512584) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -21.45141, 15.22121) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2155912), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.888747, 3.281431) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.38822, -27.80841) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1180014), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.984262, 0.0002780475) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.2305991, 27.80475) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1191256), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.94236, 3.31239) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 23.42652, -14.6) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2268761), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 9.005012, 0.0001435129) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 20.87433, 14.37513) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.590435), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 19.61985, 8.487865) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -14.8994, 14.20093) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.691238), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.977393, 18.30397) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 23.09713, -11.65444) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3922241), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 15.28206, 13.7326) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.4603704, -22.11528) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.6209553), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 13.67658, 0.0002202752) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -5.608852, 22.02752) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2200489), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 12.20507, 4.847275) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 22.02752, -7.767531) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3665375), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 19.61982, 2.000106) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -18.31479, -7.718225) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2591408), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.54411, 7.497284E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -20.45319, 7.56881) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.456389), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.187777, 3.454145) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -5.839626, -25.07086) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1377753), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.290042, 0.0002493555) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -7.159229, 24.9594) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.09993961), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.525736, 2.494487) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 17.48746, -19.46407) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1281586), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.686502, 0.0001922491) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 16.05069, 19.24876) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4696551), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.14276, 9.040274) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -10.946, -19.53067) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4628757), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.025051, 0.0001932228) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -15.32156, 19.32228) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1378767), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.819405, 2.664044) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.37134, -24.0291) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1108674), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.687296, 0.0002391654) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.249614, 23.91654) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1568838), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.704151, 3.752287) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 23.28331, -6.928161) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5415995), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 15.87577, 6.724003E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 17.62621, 6.795529) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.226729), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 19.61985, 1.540878) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -15.30014, 6.750589) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4426361), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.8865, 4.528736) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.750587, -19.6424) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2305592), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 13.18222, 0.0001952448) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.472753, 19.57217) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.002434), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 12.7369, 19.6198) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -5.33831, -19.48888) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.7929868), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.419057, 4.16536) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -23.02034, -1.586958) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2246498), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.000250105, 3.808835) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 24.99714, -1.572675) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1788682), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.314614, 3.527739) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.09929, 20.58879) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.7816031), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 9.211795, 19.61979) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.427216, -20.55026) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.9547223), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.058162, 0.0002044376) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -6.902648, 20.44376) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2043911), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.442544, 4.178548) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 13.22719, -17.90403) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.233386), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.262522, 0.0001770008) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.84221, 17.74776) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4721227), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 12.28793, 8.379155) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -12.22817, -14.21008) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5896627), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.371777, 0.0001400589) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -17.75392, 14.00589) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1808783), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0001780728, 2.53363) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 17.78795, 12.75767) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.339301), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 15.02542, 19.61987) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.623549, -12.68671) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5710809), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 16.06627, 12.37468) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.29918, -5.410871) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3758278), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 19.61992, 10.34107) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -7.537445, -5.357656) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5498449), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 13.99255, 7.395328) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -1.80683, 13.73323) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.8901526), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.497512, 19.61986) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -10.42943, -13.59016) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2104124), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.085816, 16.76016) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -5.285142, -16.85733) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.698581), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0001051595, 4.983803) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.49216, -14.57131) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3420286), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.014989, 0.0001446568) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.085127, 14.46568) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2505379), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.482346, 3.624316) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.64452, -3.182668) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.138767), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.79832, 3.069148E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.42739, 3.140674) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.261231), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.31868, 3.961057) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.140674, -8.945286) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4428095), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.74761, 8.878566E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -1.200725, 8.92625) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3679302), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.64192, 3.284277) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.92625, -4.81012) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.682785), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.44996, 4.729227E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.212746, 4.776911) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.9691768), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.98726, 4.629645) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.776911, -7.294877) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.6346434), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 13.04329, 7.224429E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -1.444419, 7.272113) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5074097), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.04758, 3.689949) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.272113, -6.422107) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5745698), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 13.60665, 6.348934E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.629092, 6.396618) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.7429182), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 12.10979, 4.752171) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.396617, -5.658934) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.8397644), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.0224, 5.582916E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -1.83225, 5.630599) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.6312054), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.91168, 3.55404) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.630599, -8.024374) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4429057), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 12.44332, 7.9564E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.282444, 8.004084) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5421413), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.697, 4.339384) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.004084, -4.035961) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.07518), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.63257, 3.904473E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -2.520668, 3.99984) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.7227589), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.2485, 2.890863) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.99984, -9.610931) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3007891), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.00784, 9.546617E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.047284, 9.5943) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3548257), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.762, 3.404376) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 9.594299, -2.433555) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.398931), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.58459, 2.345659E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -4.060983, 2.393343) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.173249), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.068203, 2.807865) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -5.631238, -14.47211) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.194019), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.790921, 0.0001436155) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -7.477002, 14.36155) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2104654), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.190275E-05, 3.022877) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.196284, 12.33656) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.345361), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.148965, 19.61988) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -4.971041, -12.26093) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3268713), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.422212E-05, 15.61202) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.41034, -11.11049) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.40516), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.727924, 0.0001111375) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -6.321439, 11.01838) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.106372), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.326775E-05, 1.172253) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.329431, 9.469191) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.290414), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.318291E-05, 13.39154) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.31834, 10.94849) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5688878), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.575984, 19.61989) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.733199, -10.92106) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.9225922), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.242024E-05, 9.544113) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.289756, -9.387285) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.016706), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.324602, 9.331409E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -3.662205, 9.331409) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2665415), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.402976E-05, 2.487381) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.397064, 8.023324) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.100329), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.64054E-05, 11.31575) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.640589, 6.898616) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.9461036), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.206955E-05, 17.84262) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.207005, 6.253925) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2842029), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.799516, 19.61994) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.413935, -6.231718) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5728211), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.801053E-05, 16.05022) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.813024, -5.650228) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.7773848), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.303209E-05, 11.65777) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.279417, -4.859393) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.6685966), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.844296E-05, 8.408755) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.820503, -4.179256) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5750363), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.4377E-05, 6.005496) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.425828, -3.594323) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4945723), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.086349E-05, 4.227811) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.086398, -3.091268) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4253715), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.794431E-05, 2.912848) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.79448, -2.658629) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3658572), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.543375E-05, 1.940146) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.543425, -2.28655) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3146735), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.330442E-05, 1.220609) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.327511, -1.966554) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2706544), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.141771E-05, 0.688336) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.14182, -1.69135) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.232797), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 9.820731E-06, 0.2945802) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.9821221, -1.454668) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2002388), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.44729E-06, 0.003286785) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.8447781, -1.251116) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.002627082), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002202011, 1.239552E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.8114513, 1.239575) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1681041), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.204322E-06, 0.2084007) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.7204813, 1.066187) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1468971), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.197441E-06, 0.3650296) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.6197932, 0.9170609) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1263695), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.331456E-06, 0.480926) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.5331947, 0.7888028) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1087143), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.582926E-06, 0.5666869) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.4587142, 0.6784922) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0935297), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.946068E-06, 0.6301519) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.3946559, 0.5836178) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.08046991), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.391399E-06, 0.6771206) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.3395615, 0.5020194) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.06923762), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.921276E-06, 0.7118835) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.2921766, 0.4318393) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0595771), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.513734E-06, 0.737615) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.2514225, 0.3714797) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0512684), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.163221E-06, 0.7566634) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.2163712, 0.3195664) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.04412237), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.862688E-06, 0.7707661) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.1862247, 0.2749174) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.03797631), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.602478E-06, 0.7812089) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.1602968, 0.2365163) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.03269029), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.379015E-06, 0.7889427) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.1379971, 0.2034888) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.02814396), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.18792E-06, 0.7946714) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.1188178, 0.175083) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.02423381), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.022733E-06, 0.7989158) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.1023224, 0.150652) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.02087083), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.80862E-07, 0.8020613) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.08813525, 0.1296397) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.01797844), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.589597E-07, 0.8043932) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.07593338, 0.1115677) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0154908), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.537832E-07, 0.8061224) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.06543901, 0.09602457) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.01335127), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.63641E-07, 0.8074053) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.05641315, 0.08265641) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.01151113), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.85955E-07, 0.8083575) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.04865037, 0.07115889) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.009928506), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.192195E-07, 0.8090646) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.04197391, 0.06127021) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.008567349), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.617982E-07, 0.80959) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.03623178, 0.05276527) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.007396676), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.124417E-07, 0.8099808) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.03129322, 0.04545041) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.006389831), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.699823E-07, 0.8102716) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.02704583, 0.03915911) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.005523895), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.334384E-07, 0.8104883) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0233929, 0.03374812) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.004779152), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.020291E-07, 0.8106499) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.02025124, 0.02909426) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.004138645), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.750029E-07, 0.8107705) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.01754934, 0.02509158) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.003587792), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.517663E-07, 0.8108608) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.01522568, 0.02164893) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.003114051), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.317795E-07, 0.8109283) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.01322737, 0.01868795) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.002706637), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.145984E-07, 0.8109791) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.01150889, 0.01614122) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.002356275), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 9.982086E-08, 0.8110173) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.01003114, 0.01395076) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.002054987), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.711405E-08, 0.8110461) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.008760455, 0.0120667) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001795915), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.618684E-08, 0.8110679) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007667916, 0.01044615) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001573159), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.679592E-08, 0.8110844) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006728643, 0.009052214) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001381649), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.872202E-08, 0.811097) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005921252, 0.007853162) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001217024), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.178306E-08, 0.8111066) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005227356, 0.006821695) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001075536), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.582106E-08, 0.811114) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004631156, 0.005934337) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009539629), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.070063E-08, 0.8111197) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004119067, 0.005170891) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008495366), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.630378E-08, 0.8111242) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003679428, 0.004513982) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007598784), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.253185E-08, 0.8111277) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003302213, 0.003948665) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006829454), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.929792E-08, 0.8111305) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00297882, 0.003462082) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006169838), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.652802E-08, 0.8111327) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002701863, 0.003043171) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000560488), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.415967E-08, 0.8111344) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002465006, 0.002682415) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005121666), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.213766E-08, 0.8111358) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002262817, 0.002371624) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004709127), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.041587E-08, 0.8111369) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002090637, 0.002103754) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000435777), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.895421E-08, 0.8111378) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001944477, 0.001872743) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004059467), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.771862E-08, 0.8111386) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001820918, 0.001673379) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003807253), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.667983E-08, 0.8111392) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001717033, 0.001501177) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003595165), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.58127E-08, 0.8111398) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001630314, 0.001352282) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003418096), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.509563E-08, 0.8111402) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001558613, 0.001223379) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003271669), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.451029E-08, 0.8111407) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001500085, 0.001111624) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003152128), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.404092E-08, 0.811141) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001453148, 0.001014572) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003056248), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.367392E-08, 0.8111413) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00141644, 0.0009301305) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002981256), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.339735E-08, 0.8111416) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001388788, 0.0008565031) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000292476), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.320126E-08, 0.8111418) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001369179, 0.0007921541) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002884693), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.307687E-08, 0.8111421) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001356734, 0.0007357697) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002859265), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.30164E-08, 0.8111423) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001350693, 0.0006862283) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002846919), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.301342E-08, 0.8111425) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001350389, 0.000642572) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.00028463), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.306193E-08, 0.8111427) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001355246, 0.0006039842) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002856223), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.3157E-08, 0.8111429) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001364753, 0.0005697685) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000287565), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.329415E-08, 0.811143) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001378465, 0.0005393313) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002903669), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.346938E-08, 0.8111432) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001395991, 0.0005121662) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002939476), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.367931E-08, 0.8111434) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001416981, 0.0004878413) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002982362), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.392084E-08, 0.8111435) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001441131, 0.0004659877) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.00030317), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.419115E-08, 0.8111436) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001468168, 0.0004462903) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000308693), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.448797E-08, 0.8111438) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001497847, 0.000428479) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003147557), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.480899E-08, 0.8111439) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001529955, 0.0004123223) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003213138), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.515247E-08, 0.811144) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001564297, 0.0003976213) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003283278), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.551645E-08, 0.8111441) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001600701, 0.0003842046) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003357622), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.589954E-08, 0.8111442) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001639009, 0.0003719244) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003435851), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.630033E-08, 0.8111444) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001679083, 0.0003606528) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003517679), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.671746E-08, 0.8111445) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001720796, 0.0003502789) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003602849), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.71499E-08, 0.8111446) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001764034, 0.0003407062) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003691125), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.759643E-08, 0.8111447) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001808693, 0.0003318506) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003782297), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.805629E-08, 0.8111448) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001854679, 0.0003236387) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003876172), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.852857E-08, 0.8111449) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001901907, 0.000316006) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003972576), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.901248E-08, 0.8111451) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001950298, 0.0003088959) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004071349), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.950731E-08, 0.8111452) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001999781, 0.0003022585) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004172344), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.00124E-08, 0.8111453) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00205029, 0.0002960498) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000427543), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.052722E-08, 0.8111454) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002101766, 0.0002902308) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004380484), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.105105E-08, 0.8111455) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002154155, 0.0002847669) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004487394), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.158354E-08, 0.8111457) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002207404, 0.0002796271) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004596055), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.212418E-08, 0.8111458) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002261468, 0.000274784) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004706375), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.267253E-08, 0.8111459) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002316303, 0.0002702131) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004818264), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.322831E-08, 0.811146) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002371869, 0.0002658922) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004931641), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.37908E-08, 0.8111461) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00242813, 0.0002618015) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005046431), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.43599E-08, 0.8111463) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002485052, 0.0002579232) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005162564), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.493551E-08, 0.8111464) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002542601, 0.0002542413) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005279974), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.551699E-08, 0.8111465) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002600749, 0.0002507411) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005398603), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.610406E-08, 0.8111466) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002659468, 0.0002474094) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005518393), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.669681E-08, 0.8111467) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002718731, 0.0002442343) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005639291), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.729477E-08, 0.8111469) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002778516, 0.0002412049) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005761249), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.789739E-08, 0.811147) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0028388, 0.0002383113) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005884222), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.850522E-08, 0.8111471) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00289956, 0.0002355444) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006008164), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.911729E-08, 0.8111472) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002960779, 0.0002328959) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006133038), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.973374E-08, 0.8111473) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003022436, 0.0002303582) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006258803), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.035464E-08, 0.8111475) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003084514, 0.0002279245) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006385426), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.097946E-08, 0.8111476) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003146996, 0.0002255881) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000651287), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.16084E-08, 0.8111477) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003209868, 0.0002233434) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006641107), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.224065E-08, 0.8111478) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003273115, 0.0002211848) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006770107), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.28765E-08, 0.811148) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003336722, 0.0002191074) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006899839), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.351627E-08, 0.8111482) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003400677, 0.0002171064) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007030278), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.415894E-08, 0.8111483) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003464967, 0.0002151776) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007161399), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.48053E-08, 0.8111485) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00352958, 0.0002133171) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007293177), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.545456E-08, 0.8111487) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003594506, 0.0002115211) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007425591), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.610684E-08, 0.8111489) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003659734, 0.0002097862) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007558619), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.676226E-08, 0.8111491) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003725253, 0.0002081093) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007692242), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.741983E-08, 0.8111492) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003791056, 0.0002064873) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007826439), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.808081E-08, 0.8111494) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003857131, 0.0002049174) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007961191), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.874399E-08, 0.8111496) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003923472, 0.0002033971) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008096482), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.941041E-08, 0.8111498) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003990068, 0.000201924) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008232295), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.007862E-08, 0.81115) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004056912, 0.0002004957) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008368612), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.074971E-08, 0.8111501) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004123999, 0.0001991102) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008505422), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.142292E-08, 0.8111503) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004191319, 0.0001977655) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008642707), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.209819E-08, 0.8111505) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004258869, 0.0001964597) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008780457), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.277588E-08, 0.8111507) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004326638, 0.000195191) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008918655), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.345571E-08, 0.8111508) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004394621, 0.0001939578) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009057288), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.413718E-08, 0.811151) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004462813, 0.0001927586) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009196345), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.482203E-08, 0.8111512) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004531207, 0.0001915918) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009335818), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.550752E-08, 0.8111514) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004599802, 0.0001904562) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009475693), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.619537E-08, 0.8111516) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004668587, 0.0001893503) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009615958), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.688509E-08, 0.8111517) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004737559, 0.000188273) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009756604), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.757619E-08, 0.8111519) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004806715, 0.0001872231) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009897621), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.826996E-08, 0.8111521) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004876046, 0.0001861995) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0010039), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.896458E-08, 0.8111523) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004945554, 0.0001852013) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001018073), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.966179E-08, 0.8111525) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005015229, 0.0001842272) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001032281), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.036019E-08, 0.8111526) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005085069, 0.0001832766) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001046522), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.105976E-08, 0.8111528) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005155072, 0.0001823483) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001060796), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.176225E-08, 0.811153) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005225229, 0.0001814417) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001075102), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.246446E-08, 0.8111532) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005295542, 0.0001805559) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001089439), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.316955E-08, 0.8111534) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005366005, 0.0001796902) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001103807), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.387609E-08, 0.8111535) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005436614, 0.0001788438) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001118205), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.458318E-08, 0.8111537) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005507368, 0.0001780161) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001132632), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.529209E-08, 0.8111539) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005578259, 0.0001772063) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001147087), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.60024E-08, 0.8111541) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00564929, 0.0001764139) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.00116157), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.671448E-08, 0.8111542) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005720453, 0.0001756383) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001176081), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.742698E-08, 0.8111544) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005791748, 0.0001748788) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001190618), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.814076E-08, 0.8111546) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005863171, 0.0001741351) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001205181), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.885625E-08, 0.8111548) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00593472, 0.0001734065) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.00121977), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.957342E-08, 0.8111551) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006006392, 0.0001726925) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001234384), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.029135E-08, 0.8111553) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006078185, 0.0001719927) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001249023), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.101046E-08, 0.8111556) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006150096, 0.0001713067) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001263685), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.173074E-08, 0.8111558) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006222124, 0.0001706339) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001278372), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.245215E-08, 0.811156) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006294266, 0.0001699741) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001293081), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.317561E-08, 0.8111563) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00636652, 0.0001693267) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001307814), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.389834E-08, 0.8111565) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006438884, 0.0001686915) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001322569), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.462306E-08, 0.8111567) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006511356, 0.000168068) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001337345), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.534971E-08, 0.811157) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00658393, 0.0001674558) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001352143), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.607561E-08, 0.8111572) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006656611, 0.0001668547) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001366962), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.68043E-08, 0.8111575) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00672939, 0.0001662643) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001381801), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.753218E-08, 0.8111577) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006802268, 0.0001656843) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001396661), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.826195E-08, 0.8111579) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006875245, 0.0001651144) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.00141154), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.899268E-08, 0.8111582) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006948318, 0.0001645544) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001426439), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.972437E-08, 0.8111584) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007021488, 0.000164004) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001441358), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.045605E-08, 0.8111587) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007094746, 0.0001634628) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001456295), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.118957E-08, 0.8111589) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007168098, 0.0001629307) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001471251), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.192487E-08, 0.8111591) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007241537, 0.0001624074) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001486225), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.266016E-08, 0.8111594) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007315067, 0.0001618926) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001501217), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.339725E-08, 0.8111596) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007388685, 0.0001613862) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001516227), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.413337E-08, 0.8111598) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007462387, 0.0001608879) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001531254), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.487125E-08, 0.8111601) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007536175, 0.0001603975) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001546299), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.560991E-08, 0.8111603) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007610042, 0.0001599148) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001561359), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.634941E-08, 0.8111606) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007683991, 0.0001594396) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001576437)}": { "workflow_id": 287, "active": true, "isImmutable": false @@ -1725,314 +1725,314 @@ }, "Workflow": [ { - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1624", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1098", "samestep": false, "steplink": 3, "creation": true, "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1625", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1099", "samestep": true, "steplink": 0, "creation": true, "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1626", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1100", "samestep": true, "steplink": 0, "creation": true, "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1627", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1101", "samestep": false, "steplink": 6, "creation": true, "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1628", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1102", "samestep": true, "steplink": 3, "creation": true, "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1629", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1103", "samestep": true, "steplink": 3, "creation": true, "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1630", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1104", "samestep": false, "steplink": 10, "creation": true, "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1631", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1105", "samestep": true, "steplink": 6, "creation": true, "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1632", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1106", "samestep": true, "steplink": 6, "creation": true, "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1635", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1109", "samestep": true, "steplink": 6, "creation": true, "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1636", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1110", "samestep": false, "steplink": 13, "creation": true, "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1637", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1111", "samestep": true, "steplink": 10, "creation": true, "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1638", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1112", "samestep": true, "steplink": 10, "creation": true, "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1639", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1113", "samestep": false, "steplink": 16, "creation": true, "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1640", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1114", "samestep": true, "steplink": 13, "creation": true, "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1641", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1115", "samestep": true, "steplink": 13, "creation": true, "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1642", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1116", "samestep": false, "steplink": 19, "creation": true, "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1643", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1117", "samestep": true, "steplink": 16, "creation": true, "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1644", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1118", "samestep": true, "steplink": 16, "creation": true, "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1645", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1119", "samestep": false, "steplink": 22, "creation": true, "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1646", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1120", "samestep": true, "steplink": 19, "creation": true, "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1647", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1121", "samestep": true, "steplink": 19, "creation": true, "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1648", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1122", "samestep": false, "steplink": 25, "creation": true, "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1649", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1123", "samestep": true, "steplink": 22, "creation": true, "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1650", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1124", "samestep": true, "steplink": 22, "creation": true, "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1651", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1125", "samestep": false, "steplink": 30, "creation": true, "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1652", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1126", "samestep": true, "steplink": 25, "creation": true, "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1653", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1127", "samestep": true, "steplink": 25, "creation": true, "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1656", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1130", "samestep": true, "steplink": 25, "creation": true, "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1659", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1133", "samestep": true, "steplink": 25, "creation": true, "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1660", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1134", "samestep": false, "steplink": 288, "creation": true, "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.71507, 18.63876) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.3575, -24.0345) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2859854)", @@ -2042,7 +2042,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 16.41822, 11.76509) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 18.17429, -15.64585) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1854527)", @@ -2052,7 +2052,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 19.61984, 8.863367) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -16.15633, -15.4558) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5734656)", @@ -2062,7 +2062,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.74145, 0.0001512584) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -21.45141, 15.22121) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2155912)", @@ -2072,7 +2072,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.888747, 3.281431) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.38822, -27.80841) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1180014)", @@ -2082,7 +2082,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.984262, 0.0002780475) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.2305991, 27.80475) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1191256)", @@ -2092,7 +2092,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.94236, 3.31239) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 23.42652, -14.6) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2268761)", @@ -2102,7 +2102,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 9.005012, 0.0001435129) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 20.87433, 14.37513) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.590435)", @@ -2112,7 +2112,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 19.61985, 8.487865) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -14.8994, 14.20093) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.691238)", @@ -2122,7 +2122,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.977393, 18.30397) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 23.09713, -11.65444) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3922241)", @@ -2132,7 +2132,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 15.28206, 13.7326) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.4603704, -22.11528) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.6209553)", @@ -2142,7 +2142,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 13.67658, 0.0002202752) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -5.608852, 22.02752) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2200489)", @@ -2152,7 +2152,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 12.20507, 4.847275) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 22.02752, -7.767531) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3665375)", @@ -2162,7 +2162,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 19.61982, 2.000106) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -18.31479, -7.718225) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2591408)", @@ -2172,7 +2172,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.54411, 7.497284E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -20.45319, 7.56881) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.456389)", @@ -2182,7 +2182,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.187777, 3.454145) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -5.839626, -25.07086) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1377753)", @@ -2192,7 +2192,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.290042, 0.0002493555) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -7.159229, 24.9594) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.09993961)", @@ -2202,7 +2202,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.525736, 2.494487) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 17.48746, -19.46407) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1281586)", @@ -2212,7 +2212,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.686502, 0.0001922491) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 16.05069, 19.24876) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4696551)", @@ -2222,7 +2222,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.14276, 9.040274) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -10.946, -19.53067) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4628757)", @@ -2232,7 +2232,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.025051, 0.0001932228) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -15.32156, 19.32228) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1378767)", @@ -2242,7 +2242,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.819405, 2.664044) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.37134, -24.0291) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1108674)", @@ -2252,7 +2252,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.687296, 0.0002391654) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.249614, 23.91654) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1568838)", @@ -2262,7 +2262,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.704151, 3.752287) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 23.28331, -6.928161) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5415995)", @@ -2272,7 +2272,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 15.87577, 6.724003E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 17.62621, 6.795529) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.226729)", @@ -2282,7 +2282,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 19.61985, 1.540878) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -15.30014, 6.750589) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4426361)", @@ -2292,7 +2292,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.8865, 4.528736) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.750587, -19.6424) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2305592)", @@ -2302,7 +2302,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 13.18222, 0.0001952448) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.472753, 19.57217) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.002434)", @@ -2312,7 +2312,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 12.7369, 19.6198) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -5.33831, -19.48888) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.7929868)", @@ -2322,7 +2322,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.419057, 4.16536) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -23.02034, -1.586958) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2246498)", @@ -2332,7 +2332,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.000250105, 3.808835) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 24.99714, -1.572675) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1788682)", @@ -2342,7 +2342,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.314614, 3.527739) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.09929, 20.58879) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.7816031)", @@ -2352,7 +2352,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 9.211795, 19.61979) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.427216, -20.55026) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.9547223)", @@ -2362,7 +2362,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.058162, 0.0002044376) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -6.902648, 20.44376) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2043911)", @@ -2372,7 +2372,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.442544, 4.178548) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 13.22719, -17.90403) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.233386)", @@ -2382,7 +2382,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.262522, 0.0001770008) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.84221, 17.74776) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4721227)", @@ -2392,7 +2392,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 12.28793, 8.379155) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -12.22817, -14.21008) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5896627)", @@ -2402,7 +2402,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.371777, 0.0001400589) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -17.75392, 14.00589) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1808783)", @@ -2412,7 +2412,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0001780728, 2.53363) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 17.78795, 12.75767) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.339301)", @@ -2422,7 +2422,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 15.02542, 19.61987) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.623549, -12.68671) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5710809)", @@ -2432,7 +2432,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 16.06627, 12.37468) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.29918, -5.410871) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3758278)", @@ -2442,7 +2442,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 19.61992, 10.34107) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -7.537445, -5.357656) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5498449)", @@ -2452,7 +2452,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 13.99255, 7.395328) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -1.80683, 13.73323) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.8901526)", @@ -2462,7 +2462,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.497512, 19.61986) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -10.42943, -13.59016) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2104124)", @@ -2472,7 +2472,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.085816, 16.76016) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -5.285142, -16.85733) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.698581)", @@ -2482,7 +2482,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0001051595, 4.983803) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.49216, -14.57131) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3420286)", @@ -2492,7 +2492,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.014989, 0.0001446568) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.085127, 14.46568) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2505379)", @@ -2502,7 +2502,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.482346, 3.624316) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.64452, -3.182668) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.138767)", @@ -2512,7 +2512,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.79832, 3.069148E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.42739, 3.140674) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.261231)", @@ -2522,7 +2522,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.31868, 3.961057) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.140674, -8.945286) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4428095)", @@ -2532,7 +2532,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.74761, 8.878566E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -1.200725, 8.92625) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3679302)", @@ -2542,7 +2542,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.64192, 3.284277) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.92625, -4.81012) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.682785)", @@ -2552,7 +2552,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.44996, 4.729227E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.212746, 4.776911) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.9691768)", @@ -2562,7 +2562,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.98726, 4.629645) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.776911, -7.294877) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.6346434)", @@ -2572,7 +2572,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 13.04329, 7.224429E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -1.444419, 7.272113) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5074097)", @@ -2582,7 +2582,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.04758, 3.689949) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.272113, -6.422107) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5745698)", @@ -2592,7 +2592,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 13.60665, 6.348934E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.629092, 6.396618) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.7429182)", @@ -2602,7 +2602,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 12.10979, 4.752171) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.396617, -5.658934) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.8397644)", @@ -2612,7 +2612,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.0224, 5.582916E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -1.83225, 5.630599) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.6312054)", @@ -2622,7 +2622,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.91168, 3.55404) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.630599, -8.024374) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4429057)", @@ -2632,7 +2632,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 12.44332, 7.9564E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.282444, 8.004084) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5421413)", @@ -2642,7 +2642,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.697, 4.339384) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.004084, -4.035961) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.07518)", @@ -2652,7 +2652,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.63257, 3.904473E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -2.520668, 3.99984) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.7227589)", @@ -2662,7 +2662,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.2485, 2.890863) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.99984, -9.610931) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3007891)", @@ -2672,7 +2672,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.00784, 9.546617E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.047284, 9.5943) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3548257)", @@ -2682,7 +2682,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.762, 3.404376) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 9.594299, -2.433555) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.398931)", @@ -2692,7 +2692,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.58459, 2.345659E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -4.060983, 2.393343) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.173249)", @@ -2702,7 +2702,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.068203, 2.807865) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -5.631238, -14.47211) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.194019)", @@ -2712,7 +2712,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.790921, 0.0001436155) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -7.477002, 14.36155) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2104654)", @@ -2722,7 +2722,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.190275E-05, 3.022877) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.196284, 12.33656) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.345361)", @@ -2732,7 +2732,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.148965, 19.61988) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -4.971041, -12.26093) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3268713)", @@ -2742,7 +2742,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.422212E-05, 15.61202) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.41034, -11.11049) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.40516)", @@ -2752,7 +2752,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.727924, 0.0001111375) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -6.321439, 11.01838) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.106372)", @@ -2762,7 +2762,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.326775E-05, 1.172253) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.329431, 9.469191) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.290414)", @@ -2772,7 +2772,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.318291E-05, 13.39154) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.31834, 10.94849) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5688878)", @@ -2782,7 +2782,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.575984, 19.61989) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.733199, -10.92106) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.9225922)", @@ -2792,7 +2792,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.242024E-05, 9.544113) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.289756, -9.387285) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.016706)", @@ -2802,7 +2802,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.324602, 9.331409E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -3.662205, 9.331409) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2665415)", @@ -2812,7 +2812,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.402976E-05, 2.487381) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.397064, 8.023324) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.100329)", @@ -2822,7 +2822,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.64054E-05, 11.31575) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.640589, 6.898616) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.9461036)", @@ -2832,7 +2832,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.206955E-05, 17.84262) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.207005, 6.253925) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2842029)", @@ -2842,7 +2842,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.799516, 19.61994) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.413935, -6.231718) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5728211)", @@ -2852,7 +2852,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.801053E-05, 16.05022) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.813024, -5.650228) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.7773848)", @@ -2862,7 +2862,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.303209E-05, 11.65777) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.279417, -4.859393) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.6685966)", @@ -2872,7 +2872,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.844296E-05, 8.408755) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.820503, -4.179256) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5750363)", @@ -2882,7 +2882,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.4377E-05, 6.005496) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.425828, -3.594323) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4945723)", @@ -2892,7 +2892,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.086349E-05, 4.227811) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.086398, -3.091268) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4253715)", @@ -2902,7 +2902,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.794431E-05, 2.912848) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.79448, -2.658629) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3658572)", @@ -2912,7 +2912,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.543375E-05, 1.940146) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.543425, -2.28655) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3146735)", @@ -2922,7 +2922,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.330442E-05, 1.220609) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.327511, -1.966554) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2706544)", @@ -2932,7 +2932,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.141771E-05, 0.688336) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.14182, -1.69135) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.232797)", @@ -2942,7 +2942,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 9.820731E-06, 0.2945802) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.9821221, -1.454668) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2002388)", @@ -2952,7 +2952,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.44729E-06, 0.003286785) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.8447781, -1.251116) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.002627082)", @@ -2962,7 +2962,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002202011, 1.239552E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.8114513, 1.239575) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1681041)", @@ -2972,7 +2972,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.204322E-06, 0.2084007) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.7204813, 1.066187) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1468971)", @@ -2982,7 +2982,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.197441E-06, 0.3650296) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.6197932, 0.9170609) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1263695)", @@ -2992,7 +2992,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.331456E-06, 0.480926) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.5331947, 0.7888028) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1087143)", @@ -3002,7 +3002,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.582926E-06, 0.5666869) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.4587142, 0.6784922) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0935297)", @@ -3012,7 +3012,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.946068E-06, 0.6301519) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.3946559, 0.5836178) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.08046991)", @@ -3022,7 +3022,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.391399E-06, 0.6771206) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.3395615, 0.5020194) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.06923762)", @@ -3032,7 +3032,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.921276E-06, 0.7118835) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.2921766, 0.4318393) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0595771)", @@ -3042,7 +3042,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.513734E-06, 0.737615) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.2514225, 0.3714797) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0512684)", @@ -3052,7 +3052,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.163221E-06, 0.7566634) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.2163712, 0.3195664) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.04412237)", @@ -3062,7 +3062,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.862688E-06, 0.7707661) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.1862247, 0.2749174) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.03797631)", @@ -3072,7 +3072,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.602478E-06, 0.7812089) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.1602968, 0.2365163) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.03269029)", @@ -3082,7 +3082,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.379015E-06, 0.7889427) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.1379971, 0.2034888) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.02814396)", @@ -3092,7 +3092,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.18792E-06, 0.7946714) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.1188178, 0.175083) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.02423381)", @@ -3102,7 +3102,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.022733E-06, 0.7989158) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.1023224, 0.150652) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.02087083)", @@ -3112,7 +3112,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.80862E-07, 0.8020613) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.08813525, 0.1296397) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.01797844)", @@ -3122,7 +3122,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.589597E-07, 0.8043932) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.07593338, 0.1115677) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0154908)", @@ -3132,7 +3132,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.537832E-07, 0.8061224) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.06543901, 0.09602457) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.01335127)", @@ -3142,7 +3142,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.63641E-07, 0.8074053) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.05641315, 0.08265641) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.01151113)", @@ -3152,7 +3152,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.85955E-07, 0.8083575) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.04865037, 0.07115889) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.009928506)", @@ -3162,7 +3162,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.192195E-07, 0.8090646) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.04197391, 0.06127021) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.008567349)", @@ -3172,7 +3172,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.617982E-07, 0.80959) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.03623178, 0.05276527) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.007396676)", @@ -3182,7 +3182,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.124417E-07, 0.8099808) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.03129322, 0.04545041) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.006389831)", @@ -3192,7 +3192,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.699823E-07, 0.8102716) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.02704583, 0.03915911) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.005523895)", @@ -3202,7 +3202,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.334384E-07, 0.8104883) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0233929, 0.03374812) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.004779152)", @@ -3212,7 +3212,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.020291E-07, 0.8106499) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.02025124, 0.02909426) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.004138645)", @@ -3222,7 +3222,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.750029E-07, 0.8107705) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.01754934, 0.02509158) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.003587792)", @@ -3232,7 +3232,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.517663E-07, 0.8108608) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.01522568, 0.02164893) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.003114051)", @@ -3242,7 +3242,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.317795E-07, 0.8109283) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.01322737, 0.01868795) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.002706637)", @@ -3252,7 +3252,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.145984E-07, 0.8109791) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.01150889, 0.01614122) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.002356275)", @@ -3262,7 +3262,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 9.982086E-08, 0.8110173) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.01003114, 0.01395076) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.002054987)", @@ -3272,7 +3272,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.711405E-08, 0.8110461) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.008760455, 0.0120667) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001795915)", @@ -3282,7 +3282,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.618684E-08, 0.8110679) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007667916, 0.01044615) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001573159)", @@ -3292,7 +3292,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.679592E-08, 0.8110844) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006728643, 0.009052214) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001381649)", @@ -3302,7 +3302,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.872202E-08, 0.811097) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005921252, 0.007853162) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001217024)", @@ -3312,7 +3312,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.178306E-08, 0.8111066) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005227356, 0.006821695) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001075536)", @@ -3322,7 +3322,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.582106E-08, 0.811114) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004631156, 0.005934337) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009539629)", @@ -3332,7 +3332,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.070063E-08, 0.8111197) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004119067, 0.005170891) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008495366)", @@ -3342,7 +3342,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.630378E-08, 0.8111242) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003679428, 0.004513982) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007598784)", @@ -3352,7 +3352,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.253185E-08, 0.8111277) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003302213, 0.003948665) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006829454)", @@ -3362,7 +3362,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.929792E-08, 0.8111305) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00297882, 0.003462082) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006169838)", @@ -3372,7 +3372,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.652802E-08, 0.8111327) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002701863, 0.003043171) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000560488)", @@ -3382,7 +3382,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.415967E-08, 0.8111344) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002465006, 0.002682415) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005121666)", @@ -3392,7 +3392,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.213766E-08, 0.8111358) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002262817, 0.002371624) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004709127)", @@ -3402,7 +3402,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.041587E-08, 0.8111369) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002090637, 0.002103754) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000435777)", @@ -3412,7 +3412,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.895421E-08, 0.8111378) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001944477, 0.001872743) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004059467)", @@ -3422,7 +3422,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.771862E-08, 0.8111386) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001820918, 0.001673379) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003807253)", @@ -3432,7 +3432,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.667983E-08, 0.8111392) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001717033, 0.001501177) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003595165)", @@ -3442,7 +3442,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.58127E-08, 0.8111398) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001630314, 0.001352282) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003418096)", @@ -3452,7 +3452,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.509563E-08, 0.8111402) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001558613, 0.001223379) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003271669)", @@ -3462,7 +3462,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.451029E-08, 0.8111407) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001500085, 0.001111624) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003152128)", @@ -3472,7 +3472,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.404092E-08, 0.811141) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001453148, 0.001014572) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003056248)", @@ -3482,7 +3482,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.367392E-08, 0.8111413) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00141644, 0.0009301305) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002981256)", @@ -3492,7 +3492,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.339735E-08, 0.8111416) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001388788, 0.0008565031) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000292476)", @@ -3502,7 +3502,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.320126E-08, 0.8111418) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001369179, 0.0007921541) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002884693)", @@ -3512,7 +3512,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.307687E-08, 0.8111421) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001356734, 0.0007357697) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002859265)", @@ -3522,7 +3522,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.30164E-08, 0.8111423) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001350693, 0.0006862283) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002846919)", @@ -3532,7 +3532,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.301342E-08, 0.8111425) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001350389, 0.000642572) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.00028463)", @@ -3542,7 +3542,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.306193E-08, 0.8111427) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001355246, 0.0006039842) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002856223)", @@ -3552,7 +3552,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.3157E-08, 0.8111429) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001364753, 0.0005697685) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000287565)", @@ -3562,7 +3562,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.329415E-08, 0.811143) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001378465, 0.0005393313) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002903669)", @@ -3572,7 +3572,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.346938E-08, 0.8111432) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001395991, 0.0005121662) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002939476)", @@ -3582,7 +3582,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.367931E-08, 0.8111434) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001416981, 0.0004878413) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002982362)", @@ -3592,7 +3592,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.392084E-08, 0.8111435) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001441131, 0.0004659877) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.00030317)", @@ -3602,7 +3602,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.419115E-08, 0.8111436) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001468168, 0.0004462903) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000308693)", @@ -3612,7 +3612,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.448797E-08, 0.8111438) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001497847, 0.000428479) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003147557)", @@ -3622,7 +3622,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.480899E-08, 0.8111439) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001529955, 0.0004123223) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003213138)", @@ -3632,7 +3632,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.515247E-08, 0.811144) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001564297, 0.0003976213) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003283278)", @@ -3642,7 +3642,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.551645E-08, 0.8111441) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001600701, 0.0003842046) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003357622)", @@ -3652,7 +3652,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.589954E-08, 0.8111442) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001639009, 0.0003719244) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003435851)", @@ -3662,7 +3662,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.630033E-08, 0.8111444) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001679083, 0.0003606528) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003517679)", @@ -3672,7 +3672,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.671746E-08, 0.8111445) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001720796, 0.0003502789) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003602849)", @@ -3682,7 +3682,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.71499E-08, 0.8111446) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001764034, 0.0003407062) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003691125)", @@ -3692,7 +3692,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.759643E-08, 0.8111447) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001808693, 0.0003318506) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003782297)", @@ -3702,7 +3702,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.805629E-08, 0.8111448) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001854679, 0.0003236387) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003876172)", @@ -3712,7 +3712,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.852857E-08, 0.8111449) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001901907, 0.000316006) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003972576)", @@ -3722,7 +3722,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.901248E-08, 0.8111451) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001950298, 0.0003088959) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004071349)", @@ -3732,7 +3732,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.950731E-08, 0.8111452) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001999781, 0.0003022585) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004172344)", @@ -3742,7 +3742,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.00124E-08, 0.8111453) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00205029, 0.0002960498) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000427543)", @@ -3752,7 +3752,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.052722E-08, 0.8111454) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002101766, 0.0002902308) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004380484)", @@ -3762,7 +3762,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.105105E-08, 0.8111455) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002154155, 0.0002847669) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004487394)", @@ -3772,7 +3772,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.158354E-08, 0.8111457) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002207404, 0.0002796271) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004596055)", @@ -3782,7 +3782,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.212418E-08, 0.8111458) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002261468, 0.000274784) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004706375)", @@ -3792,7 +3792,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.267253E-08, 0.8111459) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002316303, 0.0002702131) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004818264)", @@ -3802,7 +3802,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.322831E-08, 0.811146) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002371869, 0.0002658922) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004931641)", @@ -3812,7 +3812,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.37908E-08, 0.8111461) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00242813, 0.0002618015) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005046431)", @@ -3822,7 +3822,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.43599E-08, 0.8111463) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002485052, 0.0002579232) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005162564)", @@ -3832,7 +3832,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.493551E-08, 0.8111464) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002542601, 0.0002542413) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005279974)", @@ -3842,7 +3842,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.551699E-08, 0.8111465) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002600749, 0.0002507411) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005398603)", @@ -3852,7 +3852,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.610406E-08, 0.8111466) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002659468, 0.0002474094) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005518393)", @@ -3862,7 +3862,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.669681E-08, 0.8111467) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002718731, 0.0002442343) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005639291)", @@ -3872,7 +3872,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.729477E-08, 0.8111469) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002778516, 0.0002412049) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005761249)", @@ -3882,7 +3882,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.789739E-08, 0.811147) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0028388, 0.0002383113) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005884222)", @@ -3892,7 +3892,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.850522E-08, 0.8111471) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00289956, 0.0002355444) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006008164)", @@ -3902,7 +3902,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.911729E-08, 0.8111472) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002960779, 0.0002328959) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006133038)", @@ -3912,7 +3912,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.973374E-08, 0.8111473) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003022436, 0.0002303582) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006258803)", @@ -3922,7 +3922,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.035464E-08, 0.8111475) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003084514, 0.0002279245) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006385426)", @@ -3932,7 +3932,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.097946E-08, 0.8111476) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003146996, 0.0002255881) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000651287)", @@ -3942,7 +3942,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.16084E-08, 0.8111477) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003209868, 0.0002233434) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006641107)", @@ -3952,7 +3952,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.224065E-08, 0.8111478) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003273115, 0.0002211848) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006770107)", @@ -3962,7 +3962,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.28765E-08, 0.811148) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003336722, 0.0002191074) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006899839)", @@ -3972,7 +3972,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.351627E-08, 0.8111482) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003400677, 0.0002171064) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007030278)", @@ -3982,7 +3982,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.415894E-08, 0.8111483) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003464967, 0.0002151776) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007161399)", @@ -3992,7 +3992,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.48053E-08, 0.8111485) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00352958, 0.0002133171) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007293177)", @@ -4002,7 +4002,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.545456E-08, 0.8111487) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003594506, 0.0002115211) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007425591)", @@ -4012,7 +4012,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.610684E-08, 0.8111489) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003659734, 0.0002097862) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007558619)", @@ -4022,7 +4022,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.676226E-08, 0.8111491) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003725253, 0.0002081093) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007692242)", @@ -4032,7 +4032,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.741983E-08, 0.8111492) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003791056, 0.0002064873) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007826439)", @@ -4042,7 +4042,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.808081E-08, 0.8111494) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003857131, 0.0002049174) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007961191)", @@ -4052,7 +4052,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.874399E-08, 0.8111496) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003923472, 0.0002033971) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008096482)", @@ -4062,7 +4062,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.941041E-08, 0.8111498) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003990068, 0.000201924) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008232295)", @@ -4072,7 +4072,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.007862E-08, 0.81115) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004056912, 0.0002004957) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008368612)", @@ -4082,7 +4082,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.074971E-08, 0.8111501) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004123999, 0.0001991102) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008505422)", @@ -4092,7 +4092,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.142292E-08, 0.8111503) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004191319, 0.0001977655) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008642707)", @@ -4102,7 +4102,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.209819E-08, 0.8111505) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004258869, 0.0001964597) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008780457)", @@ -4112,7 +4112,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.277588E-08, 0.8111507) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004326638, 0.000195191) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008918655)", @@ -4122,7 +4122,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.345571E-08, 0.8111508) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004394621, 0.0001939578) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009057288)", @@ -4132,7 +4132,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.413718E-08, 0.811151) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004462813, 0.0001927586) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009196345)", @@ -4142,7 +4142,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.482203E-08, 0.8111512) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004531207, 0.0001915918) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009335818)", @@ -4152,7 +4152,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.550752E-08, 0.8111514) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004599802, 0.0001904562) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009475693)", @@ -4162,7 +4162,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.619537E-08, 0.8111516) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004668587, 0.0001893503) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009615958)", @@ -4172,7 +4172,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.688509E-08, 0.8111517) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004737559, 0.000188273) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009756604)", @@ -4182,7 +4182,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.757619E-08, 0.8111519) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004806715, 0.0001872231) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009897621)", @@ -4192,7 +4192,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.826996E-08, 0.8111521) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004876046, 0.0001861995) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0010039)", @@ -4202,7 +4202,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.896458E-08, 0.8111523) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004945554, 0.0001852013) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001018073)", @@ -4212,7 +4212,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.966179E-08, 0.8111525) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005015229, 0.0001842272) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001032281)", @@ -4222,7 +4222,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.036019E-08, 0.8111526) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005085069, 0.0001832766) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001046522)", @@ -4232,7 +4232,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.105976E-08, 0.8111528) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005155072, 0.0001823483) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001060796)", @@ -4242,7 +4242,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.176225E-08, 0.811153) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005225229, 0.0001814417) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001075102)", @@ -4252,7 +4252,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.246446E-08, 0.8111532) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005295542, 0.0001805559) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001089439)", @@ -4262,7 +4262,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.316955E-08, 0.8111534) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005366005, 0.0001796902) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001103807)", @@ -4272,7 +4272,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.387609E-08, 0.8111535) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005436614, 0.0001788438) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001118205)", @@ -4282,7 +4282,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.458318E-08, 0.8111537) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005507368, 0.0001780161) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001132632)", @@ -4292,7 +4292,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.529209E-08, 0.8111539) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005578259, 0.0001772063) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001147087)", @@ -4302,7 +4302,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.60024E-08, 0.8111541) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00564929, 0.0001764139) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.00116157)", @@ -4312,7 +4312,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.671448E-08, 0.8111542) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005720453, 0.0001756383) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001176081)", @@ -4322,7 +4322,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.742698E-08, 0.8111544) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005791748, 0.0001748788) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001190618)", @@ -4332,7 +4332,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.814076E-08, 0.8111546) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005863171, 0.0001741351) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001205181)", @@ -4342,7 +4342,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.885625E-08, 0.8111548) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00593472, 0.0001734065) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.00121977)", @@ -4352,7 +4352,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.957342E-08, 0.8111551) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006006392, 0.0001726925) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001234384)", @@ -4362,7 +4362,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.029135E-08, 0.8111553) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006078185, 0.0001719927) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001249023)", @@ -4372,7 +4372,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.101046E-08, 0.8111556) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006150096, 0.0001713067) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001263685)", @@ -4382,7 +4382,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.173074E-08, 0.8111558) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006222124, 0.0001706339) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001278372)", @@ -4392,7 +4392,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.245215E-08, 0.811156) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006294266, 0.0001699741) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001293081)", @@ -4402,7 +4402,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.317561E-08, 0.8111563) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00636652, 0.0001693267) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001307814)", @@ -4412,7 +4412,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.389834E-08, 0.8111565) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006438884, 0.0001686915) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001322569)", @@ -4422,7 +4422,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.462306E-08, 0.8111567) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006511356, 0.000168068) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001337345)", @@ -4432,7 +4432,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.534971E-08, 0.811157) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00658393, 0.0001674558) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001352143)", @@ -4442,7 +4442,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.607561E-08, 0.8111572) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006656611, 0.0001668547) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001366962)", @@ -4452,7 +4452,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.68043E-08, 0.8111575) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00672939, 0.0001662643) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001381801)", @@ -4462,7 +4462,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.753218E-08, 0.8111577) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006802268, 0.0001656843) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001396661)", @@ -4472,7 +4472,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.826195E-08, 0.8111579) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006875245, 0.0001651144) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.00141154)", @@ -4482,7 +4482,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.899268E-08, 0.8111582) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006948318, 0.0001645544) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001426439)", @@ -4492,7 +4492,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.972437E-08, 0.8111584) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007021488, 0.000164004) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001441358)", @@ -4502,7 +4502,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.045605E-08, 0.8111587) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007094746, 0.0001634628) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001456295)", @@ -4512,7 +4512,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.118957E-08, 0.8111589) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007168098, 0.0001629307) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001471251)", @@ -4522,7 +4522,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.192487E-08, 0.8111591) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007241537, 0.0001624074) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001486225)", @@ -4532,7 +4532,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.266016E-08, 0.8111594) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007315067, 0.0001618926) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001501217)", @@ -4542,7 +4542,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.339725E-08, 0.8111596) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007388685, 0.0001613862) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001516227)", @@ -4552,7 +4552,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.413337E-08, 0.8111598) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007462387, 0.0001608879) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001531254)", @@ -4562,7 +4562,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.487125E-08, 0.8111601) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007536175, 0.0001603975) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001546299)", @@ -4572,7 +4572,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.560991E-08, 0.8111603) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007610042, 0.0001599148) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001561359)", @@ -4582,7 +4582,7 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.634941E-08, 0.8111606) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007683991, 0.0001594396) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001576437)", @@ -4592,17 +4592,17 @@ "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 }, { - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1660{t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.71507, 18.63876) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.3575, -24.0345) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2859854), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 16.41822, 11.76509) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 18.17429, -15.64585) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1854527), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 19.61984, 8.863367) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -16.15633, -15.4558) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5734656), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.74145, 0.0001512584) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -21.45141, 15.22121) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2155912), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.888747, 3.281431) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.38822, -27.80841) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1180014), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.984262, 0.0002780475) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.2305991, 27.80475) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1191256), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.94236, 3.31239) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 23.42652, -14.6) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2268761), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 9.005012, 0.0001435129) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 20.87433, 14.37513) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.590435), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 19.61985, 8.487865) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -14.8994, 14.20093) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.691238), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.977393, 18.30397) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 23.09713, -11.65444) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3922241), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 15.28206, 13.7326) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.4603704, -22.11528) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.6209553), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 13.67658, 0.0002202752) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -5.608852, 22.02752) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2200489), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 12.20507, 4.847275) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 22.02752, -7.767531) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3665375), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 19.61982, 2.000106) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -18.31479, -7.718225) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2591408), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.54411, 7.497284E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -20.45319, 7.56881) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.456389), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.187777, 3.454145) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -5.839626, -25.07086) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1377753), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.290042, 0.0002493555) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -7.159229, 24.9594) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.09993961), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.525736, 2.494487) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 17.48746, -19.46407) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1281586), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.686502, 0.0001922491) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 16.05069, 19.24876) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4696551), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.14276, 9.040274) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -10.946, -19.53067) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4628757), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.025051, 0.0001932228) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -15.32156, 19.32228) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1378767), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.819405, 2.664044) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.37134, -24.0291) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1108674), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.687296, 0.0002391654) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.249614, 23.91654) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1568838), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.704151, 3.752287) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 23.28331, -6.928161) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5415995), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 15.87577, 6.724003E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 17.62621, 6.795529) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.226729), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 19.61985, 1.540878) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -15.30014, 6.750589) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4426361), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.8865, 4.528736) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.750587, -19.6424) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2305592), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 13.18222, 0.0001952448) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.472753, 19.57217) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.002434), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 12.7369, 19.6198) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -5.33831, -19.48888) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.7929868), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.419057, 4.16536) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -23.02034, -1.586958) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2246498), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.000250105, 3.808835) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 24.99714, -1.572675) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1788682), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.314614, 3.527739) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.09929, 20.58879) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.7816031), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 9.211795, 19.61979) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.427216, -20.55026) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.9547223), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.058162, 0.0002044376) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -6.902648, 20.44376) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2043911), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.442544, 4.178548) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 13.22719, -17.90403) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.233386), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.262522, 0.0001770008) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.84221, 17.74776) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4721227), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 12.28793, 8.379155) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -12.22817, -14.21008) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5896627), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.371777, 0.0001400589) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -17.75392, 14.00589) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1808783), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0001780728, 2.53363) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 17.78795, 12.75767) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.339301), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 15.02542, 19.61987) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.623549, -12.68671) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5710809), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 16.06627, 12.37468) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.29918, -5.410871) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3758278), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 19.61992, 10.34107) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -7.537445, -5.357656) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5498449), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 13.99255, 7.395328) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -1.80683, 13.73323) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.8901526), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.497512, 19.61986) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -10.42943, -13.59016) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2104124), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.085816, 16.76016) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -5.285142, -16.85733) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.698581), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0001051595, 4.983803) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.49216, -14.57131) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3420286), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.014989, 0.0001446568) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.085127, 14.46568) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2505379), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.482346, 3.624316) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.64452, -3.182668) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.138767), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.79832, 3.069148E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.42739, 3.140674) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.261231), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.31868, 3.961057) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.140674, -8.945286) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4428095), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.74761, 8.878566E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -1.200725, 8.92625) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3679302), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.64192, 3.284277) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.92625, -4.81012) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.682785), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.44996, 4.729227E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.212746, 4.776911) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.9691768), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.98726, 4.629645) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.776911, -7.294877) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.6346434), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 13.04329, 7.224429E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -1.444419, 7.272113) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5074097), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.04758, 3.689949) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.272113, -6.422107) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5745698), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 13.60665, 6.348934E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.629092, 6.396618) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.7429182), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 12.10979, 4.752171) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.396617, -5.658934) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.8397644), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.0224, 5.582916E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -1.83225, 5.630599) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.6312054), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.91168, 3.55404) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.630599, -8.024374) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4429057), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 12.44332, 7.9564E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.282444, 8.004084) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5421413), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.697, 4.339384) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.004084, -4.035961) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.07518), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.63257, 3.904473E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -2.520668, 3.99984) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.7227589), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.2485, 2.890863) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.99984, -9.610931) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3007891), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.00784, 9.546617E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.047284, 9.5943) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3548257), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.762, 3.404376) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 9.594299, -2.433555) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.398931), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.58459, 2.345659E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -4.060983, 2.393343) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.173249), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.068203, 2.807865) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -5.631238, -14.47211) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.194019), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.790921, 0.0001436155) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -7.477002, 14.36155) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2104654), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.190275E-05, 3.022877) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.196284, 12.33656) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.345361), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.148965, 19.61988) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -4.971041, -12.26093) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3268713), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.422212E-05, 15.61202) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.41034, -11.11049) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.40516), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.727924, 0.0001111375) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -6.321439, 11.01838) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.106372), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.326775E-05, 1.172253) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.329431, 9.469191) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.290414), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.318291E-05, 13.39154) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.31834, 10.94849) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5688878), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.575984, 19.61989) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.733199, -10.92106) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.9225922), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.242024E-05, 9.544113) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.289756, -9.387285) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.016706), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.324602, 9.331409E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -3.662205, 9.331409) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2665415), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.402976E-05, 2.487381) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.397064, 8.023324) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.100329), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.64054E-05, 11.31575) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.640589, 6.898616) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.9461036), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.206955E-05, 17.84262) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.207005, 6.253925) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2842029), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.799516, 19.61994) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.413935, -6.231718) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5728211), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.801053E-05, 16.05022) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.813024, -5.650228) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.7773848), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.303209E-05, 11.65777) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.279417, -4.859393) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.6685966), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.844296E-05, 8.408755) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.820503, -4.179256) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5750363), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.4377E-05, 6.005496) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.425828, -3.594323) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4945723), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.086349E-05, 4.227811) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.086398, -3.091268) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4253715), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.794431E-05, 2.912848) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.79448, -2.658629) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3658572), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.543375E-05, 1.940146) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.543425, -2.28655) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3146735), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.330442E-05, 1.220609) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.327511, -1.966554) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2706544), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.141771E-05, 0.688336) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.14182, -1.69135) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.232797), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 9.820731E-06, 0.2945802) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.9821221, -1.454668) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2002388), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.44729E-06, 0.003286785) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.8447781, -1.251116) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.002627082), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002202011, 1.239552E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.8114513, 1.239575) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1681041), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.204322E-06, 0.2084007) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.7204813, 1.066187) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1468971), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.197441E-06, 0.3650296) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.6197932, 0.9170609) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1263695), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.331456E-06, 0.480926) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.5331947, 0.7888028) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1087143), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.582926E-06, 0.5666869) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.4587142, 0.6784922) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0935297), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.946068E-06, 0.6301519) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.3946559, 0.5836178) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.08046991), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.391399E-06, 0.6771206) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.3395615, 0.5020194) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.06923762), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.921276E-06, 0.7118835) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.2921766, 0.4318393) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0595771), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.513734E-06, 0.737615) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.2514225, 0.3714797) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0512684), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.163221E-06, 0.7566634) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.2163712, 0.3195664) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.04412237), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.862688E-06, 0.7707661) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.1862247, 0.2749174) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.03797631), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.602478E-06, 0.7812089) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.1602968, 0.2365163) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.03269029), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.379015E-06, 0.7889427) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.1379971, 0.2034888) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.02814396), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.18792E-06, 0.7946714) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.1188178, 0.175083) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.02423381), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.022733E-06, 0.7989158) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.1023224, 0.150652) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.02087083), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.80862E-07, 0.8020613) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.08813525, 0.1296397) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.01797844), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.589597E-07, 0.8043932) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.07593338, 0.1115677) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0154908), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.537832E-07, 0.8061224) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.06543901, 0.09602457) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.01335127), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.63641E-07, 0.8074053) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.05641315, 0.08265641) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.01151113), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.85955E-07, 0.8083575) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.04865037, 0.07115889) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.009928506), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.192195E-07, 0.8090646) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.04197391, 0.06127021) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.008567349), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.617982E-07, 0.80959) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.03623178, 0.05276527) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.007396676), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.124417E-07, 0.8099808) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.03129322, 0.04545041) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.006389831), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.699823E-07, 0.8102716) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.02704583, 0.03915911) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.005523895), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.334384E-07, 0.8104883) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0233929, 0.03374812) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.004779152), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.020291E-07, 0.8106499) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.02025124, 0.02909426) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.004138645), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.750029E-07, 0.8107705) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.01754934, 0.02509158) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.003587792), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.517663E-07, 0.8108608) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.01522568, 0.02164893) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.003114051), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.317795E-07, 0.8109283) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.01322737, 0.01868795) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.002706637), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.145984E-07, 0.8109791) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.01150889, 0.01614122) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.002356275), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 9.982086E-08, 0.8110173) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.01003114, 0.01395076) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.002054987), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.711405E-08, 0.8110461) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.008760455, 0.0120667) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001795915), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.618684E-08, 0.8110679) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007667916, 0.01044615) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001573159), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.679592E-08, 0.8110844) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006728643, 0.009052214) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001381649), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.872202E-08, 0.811097) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005921252, 0.007853162) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001217024), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.178306E-08, 0.8111066) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005227356, 0.006821695) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001075536), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.582106E-08, 0.811114) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004631156, 0.005934337) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009539629), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.070063E-08, 0.8111197) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004119067, 0.005170891) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008495366), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.630378E-08, 0.8111242) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003679428, 0.004513982) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007598784), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.253185E-08, 0.8111277) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003302213, 0.003948665) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006829454), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.929792E-08, 0.8111305) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00297882, 0.003462082) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006169838), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.652802E-08, 0.8111327) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002701863, 0.003043171) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000560488), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.415967E-08, 0.8111344) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002465006, 0.002682415) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005121666), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.213766E-08, 0.8111358) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002262817, 0.002371624) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004709127), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.041587E-08, 0.8111369) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002090637, 0.002103754) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000435777), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.895421E-08, 0.8111378) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001944477, 0.001872743) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004059467), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.771862E-08, 0.8111386) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001820918, 0.001673379) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003807253), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.667983E-08, 0.8111392) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001717033, 0.001501177) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003595165), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.58127E-08, 0.8111398) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001630314, 0.001352282) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003418096), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.509563E-08, 0.8111402) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001558613, 0.001223379) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003271669), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.451029E-08, 0.8111407) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001500085, 0.001111624) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003152128), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.404092E-08, 0.811141) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001453148, 0.001014572) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003056248), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.367392E-08, 0.8111413) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00141644, 0.0009301305) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002981256), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.339735E-08, 0.8111416) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001388788, 0.0008565031) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000292476), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.320126E-08, 0.8111418) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001369179, 0.0007921541) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002884693), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.307687E-08, 0.8111421) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001356734, 0.0007357697) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002859265), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.30164E-08, 0.8111423) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001350693, 0.0006862283) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002846919), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.301342E-08, 0.8111425) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001350389, 0.000642572) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.00028463), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.306193E-08, 0.8111427) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001355246, 0.0006039842) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002856223), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.3157E-08, 0.8111429) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001364753, 0.0005697685) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000287565), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.329415E-08, 0.811143) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001378465, 0.0005393313) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002903669), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.346938E-08, 0.8111432) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001395991, 0.0005121662) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002939476), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.367931E-08, 0.8111434) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001416981, 0.0004878413) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002982362), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.392084E-08, 0.8111435) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001441131, 0.0004659877) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.00030317), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.419115E-08, 0.8111436) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001468168, 0.0004462903) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000308693), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.448797E-08, 0.8111438) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001497847, 0.000428479) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003147557), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.480899E-08, 0.8111439) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001529955, 0.0004123223) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003213138), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.515247E-08, 0.811144) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001564297, 0.0003976213) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003283278), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.551645E-08, 0.8111441) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001600701, 0.0003842046) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003357622), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.589954E-08, 0.8111442) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001639009, 0.0003719244) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003435851), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.630033E-08, 0.8111444) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001679083, 0.0003606528) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003517679), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.671746E-08, 0.8111445) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001720796, 0.0003502789) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003602849), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.71499E-08, 0.8111446) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001764034, 0.0003407062) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003691125), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.759643E-08, 0.8111447) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001808693, 0.0003318506) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003782297), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.805629E-08, 0.8111448) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001854679, 0.0003236387) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003876172), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.852857E-08, 0.8111449) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001901907, 0.000316006) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003972576), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.901248E-08, 0.8111451) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001950298, 0.0003088959) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004071349), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.950731E-08, 0.8111452) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001999781, 0.0003022585) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004172344), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.00124E-08, 0.8111453) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00205029, 0.0002960498) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000427543), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.052722E-08, 0.8111454) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002101766, 0.0002902308) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004380484), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.105105E-08, 0.8111455) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002154155, 0.0002847669) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004487394), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.158354E-08, 0.8111457) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002207404, 0.0002796271) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004596055), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.212418E-08, 0.8111458) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002261468, 0.000274784) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004706375), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.267253E-08, 0.8111459) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002316303, 0.0002702131) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004818264), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.322831E-08, 0.811146) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002371869, 0.0002658922) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004931641), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.37908E-08, 0.8111461) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00242813, 0.0002618015) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005046431), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.43599E-08, 0.8111463) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002485052, 0.0002579232) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005162564), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.493551E-08, 0.8111464) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002542601, 0.0002542413) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005279974), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.551699E-08, 0.8111465) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002600749, 0.0002507411) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005398603), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.610406E-08, 0.8111466) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002659468, 0.0002474094) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005518393), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.669681E-08, 0.8111467) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002718731, 0.0002442343) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005639291), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.729477E-08, 0.8111469) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002778516, 0.0002412049) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005761249), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.789739E-08, 0.811147) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0028388, 0.0002383113) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005884222), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.850522E-08, 0.8111471) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00289956, 0.0002355444) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006008164), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.911729E-08, 0.8111472) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002960779, 0.0002328959) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006133038), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.973374E-08, 0.8111473) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003022436, 0.0002303582) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006258803), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.035464E-08, 0.8111475) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003084514, 0.0002279245) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006385426), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.097946E-08, 0.8111476) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003146996, 0.0002255881) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000651287), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.16084E-08, 0.8111477) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003209868, 0.0002233434) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006641107), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.224065E-08, 0.8111478) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003273115, 0.0002211848) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006770107), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.28765E-08, 0.811148) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003336722, 0.0002191074) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006899839), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.351627E-08, 0.8111482) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003400677, 0.0002171064) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007030278), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.415894E-08, 0.8111483) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003464967, 0.0002151776) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007161399), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.48053E-08, 0.8111485) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00352958, 0.0002133171) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007293177), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.545456E-08, 0.8111487) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003594506, 0.0002115211) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007425591), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.610684E-08, 0.8111489) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003659734, 0.0002097862) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007558619), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.676226E-08, 0.8111491) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003725253, 0.0002081093) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007692242), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.741983E-08, 0.8111492) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003791056, 0.0002064873) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007826439), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.808081E-08, 0.8111494) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003857131, 0.0002049174) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007961191), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.874399E-08, 0.8111496) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003923472, 0.0002033971) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008096482), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.941041E-08, 0.8111498) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003990068, 0.000201924) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008232295), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.007862E-08, 0.81115) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004056912, 0.0002004957) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008368612), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.074971E-08, 0.8111501) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004123999, 0.0001991102) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008505422), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.142292E-08, 0.8111503) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004191319, 0.0001977655) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008642707), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.209819E-08, 0.8111505) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004258869, 0.0001964597) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008780457), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.277588E-08, 0.8111507) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004326638, 0.000195191) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008918655), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.345571E-08, 0.8111508) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004394621, 0.0001939578) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009057288), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.413718E-08, 0.811151) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004462813, 0.0001927586) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009196345), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.482203E-08, 0.8111512) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004531207, 0.0001915918) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009335818), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.550752E-08, 0.8111514) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004599802, 0.0001904562) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009475693), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.619537E-08, 0.8111516) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004668587, 0.0001893503) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009615958), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.688509E-08, 0.8111517) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004737559, 0.000188273) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009756604), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.757619E-08, 0.8111519) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004806715, 0.0001872231) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009897621), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.826996E-08, 0.8111521) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004876046, 0.0001861995) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0010039), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.896458E-08, 0.8111523) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004945554, 0.0001852013) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001018073), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.966179E-08, 0.8111525) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005015229, 0.0001842272) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001032281), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.036019E-08, 0.8111526) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005085069, 0.0001832766) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001046522), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.105976E-08, 0.8111528) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005155072, 0.0001823483) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001060796), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.176225E-08, 0.811153) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005225229, 0.0001814417) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001075102), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.246446E-08, 0.8111532) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005295542, 0.0001805559) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001089439), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.316955E-08, 0.8111534) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005366005, 0.0001796902) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001103807), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.387609E-08, 0.8111535) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005436614, 0.0001788438) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001118205), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.458318E-08, 0.8111537) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005507368, 0.0001780161) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001132632), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.529209E-08, 0.8111539) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005578259, 0.0001772063) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001147087), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.60024E-08, 0.8111541) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00564929, 0.0001764139) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.00116157), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.671448E-08, 0.8111542) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005720453, 0.0001756383) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001176081), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.742698E-08, 0.8111544) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005791748, 0.0001748788) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001190618), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.814076E-08, 0.8111546) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005863171, 0.0001741351) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001205181), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.885625E-08, 0.8111548) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00593472, 0.0001734065) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.00121977), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.957342E-08, 0.8111551) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006006392, 0.0001726925) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001234384), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.029135E-08, 0.8111553) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006078185, 0.0001719927) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001249023), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.101046E-08, 0.8111556) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006150096, 0.0001713067) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001263685), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.173074E-08, 0.8111558) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006222124, 0.0001706339) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001278372), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.245215E-08, 0.811156) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006294266, 0.0001699741) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001293081), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.317561E-08, 0.8111563) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00636652, 0.0001693267) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001307814), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.389834E-08, 0.8111565) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006438884, 0.0001686915) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001322569), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.462306E-08, 0.8111567) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006511356, 0.000168068) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001337345), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.534971E-08, 0.811157) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00658393, 0.0001674558) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001352143), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.607561E-08, 0.8111572) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006656611, 0.0001668547) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001366962), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.68043E-08, 0.8111575) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00672939, 0.0001662643) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001381801), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.753218E-08, 0.8111577) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006802268, 0.0001656843) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001396661), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.826195E-08, 0.8111579) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006875245, 0.0001651144) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.00141154), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.899268E-08, 0.8111582) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006948318, 0.0001645544) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001426439), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.972437E-08, 0.8111584) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007021488, 0.000164004) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001441358), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.045605E-08, 0.8111587) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007094746, 0.0001634628) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001456295), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.118957E-08, 0.8111589) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007168098, 0.0001629307) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001471251), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.192487E-08, 0.8111591) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007241537, 0.0001624074) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001486225), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.266016E-08, 0.8111594) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007315067, 0.0001618926) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001501217), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.339725E-08, 0.8111596) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007388685, 0.0001613862) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001516227), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.413337E-08, 0.8111598) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007462387, 0.0001608879) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001531254), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.487125E-08, 0.8111601) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007536175, 0.0001603975) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001546299), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.560991E-08, 0.8111603) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007610042, 0.0001599148) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001561359), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.634941E-08, 0.8111606) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007683991, 0.0001594396) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001576437)}", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1134{t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.71507, 18.63876) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.3575, -24.0345) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2859854), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 16.41822, 11.76509) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 18.17429, -15.64585) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1854527), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 19.61984, 8.863367) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -16.15633, -15.4558) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5734656), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.74145, 0.0001512584) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -21.45141, 15.22121) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2155912), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.888747, 3.281431) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.38822, -27.80841) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1180014), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.984262, 0.0002780475) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.2305991, 27.80475) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1191256), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.94236, 3.31239) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 23.42652, -14.6) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2268761), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 9.005012, 0.0001435129) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 20.87433, 14.37513) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.590435), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 19.61985, 8.487865) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -14.8994, 14.20093) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.691238), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.977393, 18.30397) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 23.09713, -11.65444) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3922241), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 15.28206, 13.7326) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.4603704, -22.11528) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.6209553), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 13.67658, 0.0002202752) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -5.608852, 22.02752) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2200489), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 12.20507, 4.847275) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 22.02752, -7.767531) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3665375), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 19.61982, 2.000106) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -18.31479, -7.718225) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2591408), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.54411, 7.497284E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -20.45319, 7.56881) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.456389), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.187777, 3.454145) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -5.839626, -25.07086) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1377753), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.290042, 0.0002493555) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -7.159229, 24.9594) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.09993961), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.525736, 2.494487) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 17.48746, -19.46407) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1281586), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.686502, 0.0001922491) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 16.05069, 19.24876) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4696551), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.14276, 9.040274) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -10.946, -19.53067) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4628757), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.025051, 0.0001932228) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -15.32156, 19.32228) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1378767), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.819405, 2.664044) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.37134, -24.0291) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1108674), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.687296, 0.0002391654) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.249614, 23.91654) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1568838), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.704151, 3.752287) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 23.28331, -6.928161) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5415995), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 15.87577, 6.724003E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 17.62621, 6.795529) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.226729), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 19.61985, 1.540878) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -15.30014, 6.750589) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4426361), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.8865, 4.528736) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.750587, -19.6424) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2305592), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 13.18222, 0.0001952448) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.472753, 19.57217) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.002434), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 12.7369, 19.6198) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -5.33831, -19.48888) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.7929868), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.419057, 4.16536) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -23.02034, -1.586958) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2246498), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.000250105, 3.808835) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 24.99714, -1.572675) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1788682), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.314614, 3.527739) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.09929, 20.58879) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.7816031), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 9.211795, 19.61979) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.427216, -20.55026) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.9547223), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.058162, 0.0002044376) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -6.902648, 20.44376) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2043911), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.442544, 4.178548) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 13.22719, -17.90403) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.233386), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.262522, 0.0001770008) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.84221, 17.74776) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4721227), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 12.28793, 8.379155) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -12.22817, -14.21008) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5896627), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.371777, 0.0001400589) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -17.75392, 14.00589) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1808783), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0001780728, 2.53363) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 17.78795, 12.75767) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.339301), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 15.02542, 19.61987) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.623549, -12.68671) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5710809), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 16.06627, 12.37468) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.29918, -5.410871) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3758278), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 19.61992, 10.34107) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -7.537445, -5.357656) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5498449), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 13.99255, 7.395328) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -1.80683, 13.73323) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.8901526), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.497512, 19.61986) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -10.42943, -13.59016) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2104124), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.085816, 16.76016) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -5.285142, -16.85733) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.698581), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0001051595, 4.983803) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.49216, -14.57131) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3420286), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.014989, 0.0001446568) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.085127, 14.46568) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2505379), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.482346, 3.624316) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.64452, -3.182668) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.138767), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.79832, 3.069148E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.42739, 3.140674) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.261231), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.31868, 3.961057) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.140674, -8.945286) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4428095), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.74761, 8.878566E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -1.200725, 8.92625) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3679302), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.64192, 3.284277) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.92625, -4.81012) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.682785), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.44996, 4.729227E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.212746, 4.776911) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.9691768), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.98726, 4.629645) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.776911, -7.294877) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.6346434), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 13.04329, 7.224429E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -1.444419, 7.272113) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5074097), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.04758, 3.689949) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.272113, -6.422107) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5745698), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 13.60665, 6.348934E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.629092, 6.396618) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.7429182), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 12.10979, 4.752171) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.396617, -5.658934) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.8397644), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.0224, 5.582916E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -1.83225, 5.630599) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.6312054), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.91168, 3.55404) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.630599, -8.024374) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4429057), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 12.44332, 7.9564E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.282444, 8.004084) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5421413), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.697, 4.339384) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.004084, -4.035961) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.07518), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.63257, 3.904473E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -2.520668, 3.99984) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.7227589), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.2485, 2.890863) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.99984, -9.610931) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3007891), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.00784, 9.546617E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.047284, 9.5943) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3548257), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.762, 3.404376) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 9.594299, -2.433555) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.398931), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.58459, 2.345659E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -4.060983, 2.393343) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.173249), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.068203, 2.807865) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -5.631238, -14.47211) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.194019), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.790921, 0.0001436155) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -7.477002, 14.36155) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2104654), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.190275E-05, 3.022877) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.196284, 12.33656) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.345361), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.148965, 19.61988) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -4.971041, -12.26093) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3268713), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.422212E-05, 15.61202) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.41034, -11.11049) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.40516), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.727924, 0.0001111375) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -6.321439, 11.01838) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.106372), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.326775E-05, 1.172253) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.329431, 9.469191) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.290414), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.318291E-05, 13.39154) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.31834, 10.94849) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5688878), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.575984, 19.61989) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.733199, -10.92106) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.9225922), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.242024E-05, 9.544113) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.289756, -9.387285) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.016706), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.324602, 9.331409E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -3.662205, 9.331409) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2665415), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.402976E-05, 2.487381) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.397064, 8.023324) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.100329), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.64054E-05, 11.31575) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.640589, 6.898616) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.9461036), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.206955E-05, 17.84262) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.207005, 6.253925) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2842029), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.799516, 19.61994) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.413935, -6.231718) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5728211), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.801053E-05, 16.05022) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.813024, -5.650228) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.7773848), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.303209E-05, 11.65777) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.279417, -4.859393) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.6685966), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.844296E-05, 8.408755) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.820503, -4.179256) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5750363), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.4377E-05, 6.005496) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.425828, -3.594323) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4945723), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.086349E-05, 4.227811) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.086398, -3.091268) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4253715), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.794431E-05, 2.912848) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.79448, -2.658629) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3658572), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.543375E-05, 1.940146) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.543425, -2.28655) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3146735), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.330442E-05, 1.220609) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.327511, -1.966554) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2706544), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.141771E-05, 0.688336) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.14182, -1.69135) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.232797), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 9.820731E-06, 0.2945802) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.9821221, -1.454668) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2002388), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.44729E-06, 0.003286785) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.8447781, -1.251116) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.002627082), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002202011, 1.239552E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.8114513, 1.239575) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1681041), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.204322E-06, 0.2084007) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.7204813, 1.066187) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1468971), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.197441E-06, 0.3650296) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.6197932, 0.9170609) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1263695), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.331456E-06, 0.480926) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.5331947, 0.7888028) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1087143), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.582926E-06, 0.5666869) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.4587142, 0.6784922) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0935297), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.946068E-06, 0.6301519) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.3946559, 0.5836178) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.08046991), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.391399E-06, 0.6771206) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.3395615, 0.5020194) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.06923762), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.921276E-06, 0.7118835) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.2921766, 0.4318393) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0595771), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.513734E-06, 0.737615) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.2514225, 0.3714797) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0512684), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.163221E-06, 0.7566634) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.2163712, 0.3195664) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.04412237), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.862688E-06, 0.7707661) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.1862247, 0.2749174) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.03797631), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.602478E-06, 0.7812089) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.1602968, 0.2365163) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.03269029), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.379015E-06, 0.7889427) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.1379971, 0.2034888) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.02814396), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.18792E-06, 0.7946714) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.1188178, 0.175083) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.02423381), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.022733E-06, 0.7989158) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.1023224, 0.150652) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.02087083), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.80862E-07, 0.8020613) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.08813525, 0.1296397) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.01797844), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.589597E-07, 0.8043932) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.07593338, 0.1115677) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0154908), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.537832E-07, 0.8061224) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.06543901, 0.09602457) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.01335127), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.63641E-07, 0.8074053) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.05641315, 0.08265641) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.01151113), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.85955E-07, 0.8083575) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.04865037, 0.07115889) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.009928506), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.192195E-07, 0.8090646) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.04197391, 0.06127021) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.008567349), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.617982E-07, 0.80959) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.03623178, 0.05276527) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.007396676), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.124417E-07, 0.8099808) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.03129322, 0.04545041) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.006389831), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.699823E-07, 0.8102716) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.02704583, 0.03915911) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.005523895), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.334384E-07, 0.8104883) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0233929, 0.03374812) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.004779152), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.020291E-07, 0.8106499) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.02025124, 0.02909426) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.004138645), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.750029E-07, 0.8107705) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.01754934, 0.02509158) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.003587792), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.517663E-07, 0.8108608) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.01522568, 0.02164893) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.003114051), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.317795E-07, 0.8109283) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.01322737, 0.01868795) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.002706637), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.145984E-07, 0.8109791) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.01150889, 0.01614122) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.002356275), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 9.982086E-08, 0.8110173) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.01003114, 0.01395076) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.002054987), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.711405E-08, 0.8110461) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.008760455, 0.0120667) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001795915), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.618684E-08, 0.8110679) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007667916, 0.01044615) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001573159), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.679592E-08, 0.8110844) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006728643, 0.009052214) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001381649), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.872202E-08, 0.811097) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005921252, 0.007853162) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001217024), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.178306E-08, 0.8111066) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005227356, 0.006821695) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001075536), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.582106E-08, 0.811114) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004631156, 0.005934337) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009539629), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.070063E-08, 0.8111197) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004119067, 0.005170891) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008495366), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.630378E-08, 0.8111242) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003679428, 0.004513982) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007598784), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.253185E-08, 0.8111277) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003302213, 0.003948665) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006829454), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.929792E-08, 0.8111305) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00297882, 0.003462082) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006169838), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.652802E-08, 0.8111327) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002701863, 0.003043171) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000560488), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.415967E-08, 0.8111344) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002465006, 0.002682415) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005121666), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.213766E-08, 0.8111358) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002262817, 0.002371624) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004709127), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.041587E-08, 0.8111369) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002090637, 0.002103754) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000435777), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.895421E-08, 0.8111378) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001944477, 0.001872743) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004059467), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.771862E-08, 0.8111386) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001820918, 0.001673379) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003807253), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.667983E-08, 0.8111392) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001717033, 0.001501177) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003595165), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.58127E-08, 0.8111398) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001630314, 0.001352282) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003418096), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.509563E-08, 0.8111402) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001558613, 0.001223379) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003271669), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.451029E-08, 0.8111407) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001500085, 0.001111624) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003152128), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.404092E-08, 0.811141) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001453148, 0.001014572) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003056248), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.367392E-08, 0.8111413) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00141644, 0.0009301305) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002981256), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.339735E-08, 0.8111416) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001388788, 0.0008565031) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000292476), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.320126E-08, 0.8111418) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001369179, 0.0007921541) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002884693), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.307687E-08, 0.8111421) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001356734, 0.0007357697) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002859265), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.30164E-08, 0.8111423) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001350693, 0.0006862283) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002846919), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.301342E-08, 0.8111425) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001350389, 0.000642572) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.00028463), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.306193E-08, 0.8111427) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001355246, 0.0006039842) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002856223), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.3157E-08, 0.8111429) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001364753, 0.0005697685) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000287565), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.329415E-08, 0.811143) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001378465, 0.0005393313) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002903669), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.346938E-08, 0.8111432) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001395991, 0.0005121662) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002939476), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.367931E-08, 0.8111434) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001416981, 0.0004878413) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002982362), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.392084E-08, 0.8111435) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001441131, 0.0004659877) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.00030317), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.419115E-08, 0.8111436) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001468168, 0.0004462903) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000308693), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.448797E-08, 0.8111438) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001497847, 0.000428479) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003147557), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.480899E-08, 0.8111439) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001529955, 0.0004123223) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003213138), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.515247E-08, 0.811144) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001564297, 0.0003976213) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003283278), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.551645E-08, 0.8111441) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001600701, 0.0003842046) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003357622), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.589954E-08, 0.8111442) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001639009, 0.0003719244) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003435851), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.630033E-08, 0.8111444) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001679083, 0.0003606528) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003517679), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.671746E-08, 0.8111445) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001720796, 0.0003502789) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003602849), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.71499E-08, 0.8111446) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001764034, 0.0003407062) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003691125), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.759643E-08, 0.8111447) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001808693, 0.0003318506) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003782297), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.805629E-08, 0.8111448) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001854679, 0.0003236387) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003876172), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.852857E-08, 0.8111449) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001901907, 0.000316006) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003972576), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.901248E-08, 0.8111451) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001950298, 0.0003088959) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004071349), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.950731E-08, 0.8111452) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001999781, 0.0003022585) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004172344), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.00124E-08, 0.8111453) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00205029, 0.0002960498) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000427543), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.052722E-08, 0.8111454) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002101766, 0.0002902308) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004380484), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.105105E-08, 0.8111455) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002154155, 0.0002847669) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004487394), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.158354E-08, 0.8111457) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002207404, 0.0002796271) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004596055), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.212418E-08, 0.8111458) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002261468, 0.000274784) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004706375), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.267253E-08, 0.8111459) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002316303, 0.0002702131) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004818264), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.322831E-08, 0.811146) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002371869, 0.0002658922) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004931641), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.37908E-08, 0.8111461) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00242813, 0.0002618015) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005046431), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.43599E-08, 0.8111463) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002485052, 0.0002579232) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005162564), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.493551E-08, 0.8111464) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002542601, 0.0002542413) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005279974), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.551699E-08, 0.8111465) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002600749, 0.0002507411) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005398603), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.610406E-08, 0.8111466) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002659468, 0.0002474094) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005518393), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.669681E-08, 0.8111467) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002718731, 0.0002442343) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005639291), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.729477E-08, 0.8111469) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002778516, 0.0002412049) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005761249), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.789739E-08, 0.811147) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0028388, 0.0002383113) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005884222), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.850522E-08, 0.8111471) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00289956, 0.0002355444) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006008164), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.911729E-08, 0.8111472) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002960779, 0.0002328959) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006133038), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.973374E-08, 0.8111473) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003022436, 0.0002303582) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006258803), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.035464E-08, 0.8111475) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003084514, 0.0002279245) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006385426), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.097946E-08, 0.8111476) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003146996, 0.0002255881) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000651287), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.16084E-08, 0.8111477) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003209868, 0.0002233434) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006641107), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.224065E-08, 0.8111478) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003273115, 0.0002211848) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006770107), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.28765E-08, 0.811148) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003336722, 0.0002191074) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006899839), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.351627E-08, 0.8111482) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003400677, 0.0002171064) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007030278), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.415894E-08, 0.8111483) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003464967, 0.0002151776) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007161399), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.48053E-08, 0.8111485) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00352958, 0.0002133171) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007293177), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.545456E-08, 0.8111487) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003594506, 0.0002115211) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007425591), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.610684E-08, 0.8111489) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003659734, 0.0002097862) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007558619), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.676226E-08, 0.8111491) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003725253, 0.0002081093) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007692242), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.741983E-08, 0.8111492) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003791056, 0.0002064873) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007826439), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.808081E-08, 0.8111494) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003857131, 0.0002049174) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007961191), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.874399E-08, 0.8111496) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003923472, 0.0002033971) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008096482), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.941041E-08, 0.8111498) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003990068, 0.000201924) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008232295), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.007862E-08, 0.81115) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004056912, 0.0002004957) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008368612), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.074971E-08, 0.8111501) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004123999, 0.0001991102) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008505422), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.142292E-08, 0.8111503) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004191319, 0.0001977655) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008642707), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.209819E-08, 0.8111505) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004258869, 0.0001964597) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008780457), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.277588E-08, 0.8111507) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004326638, 0.000195191) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008918655), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.345571E-08, 0.8111508) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004394621, 0.0001939578) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009057288), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.413718E-08, 0.811151) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004462813, 0.0001927586) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009196345), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.482203E-08, 0.8111512) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004531207, 0.0001915918) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009335818), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.550752E-08, 0.8111514) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004599802, 0.0001904562) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009475693), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.619537E-08, 0.8111516) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004668587, 0.0001893503) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009615958), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.688509E-08, 0.8111517) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004737559, 0.000188273) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009756604), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.757619E-08, 0.8111519) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004806715, 0.0001872231) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009897621), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.826996E-08, 0.8111521) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004876046, 0.0001861995) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0010039), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.896458E-08, 0.8111523) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004945554, 0.0001852013) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001018073), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.966179E-08, 0.8111525) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005015229, 0.0001842272) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001032281), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.036019E-08, 0.8111526) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005085069, 0.0001832766) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001046522), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.105976E-08, 0.8111528) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005155072, 0.0001823483) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001060796), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.176225E-08, 0.811153) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005225229, 0.0001814417) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001075102), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.246446E-08, 0.8111532) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005295542, 0.0001805559) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001089439), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.316955E-08, 0.8111534) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005366005, 0.0001796902) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001103807), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.387609E-08, 0.8111535) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005436614, 0.0001788438) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001118205), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.458318E-08, 0.8111537) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005507368, 0.0001780161) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001132632), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.529209E-08, 0.8111539) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005578259, 0.0001772063) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001147087), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.60024E-08, 0.8111541) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00564929, 0.0001764139) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.00116157), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.671448E-08, 0.8111542) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005720453, 0.0001756383) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001176081), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.742698E-08, 0.8111544) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005791748, 0.0001748788) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001190618), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.814076E-08, 0.8111546) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005863171, 0.0001741351) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001205181), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.885625E-08, 0.8111548) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00593472, 0.0001734065) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.00121977), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.957342E-08, 0.8111551) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006006392, 0.0001726925) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001234384), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.029135E-08, 0.8111553) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006078185, 0.0001719927) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001249023), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.101046E-08, 0.8111556) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006150096, 0.0001713067) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001263685), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.173074E-08, 0.8111558) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006222124, 0.0001706339) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001278372), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.245215E-08, 0.811156) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006294266, 0.0001699741) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001293081), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.317561E-08, 0.8111563) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00636652, 0.0001693267) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001307814), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.389834E-08, 0.8111565) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006438884, 0.0001686915) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001322569), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.462306E-08, 0.8111567) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006511356, 0.000168068) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001337345), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.534971E-08, 0.811157) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00658393, 0.0001674558) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001352143), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.607561E-08, 0.8111572) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006656611, 0.0001668547) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001366962), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.68043E-08, 0.8111575) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00672939, 0.0001662643) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001381801), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.753218E-08, 0.8111577) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006802268, 0.0001656843) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001396661), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.826195E-08, 0.8111579) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006875245, 0.0001651144) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.00141154), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.899268E-08, 0.8111582) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006948318, 0.0001645544) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001426439), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.972437E-08, 0.8111584) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007021488, 0.000164004) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001441358), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.045605E-08, 0.8111587) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007094746, 0.0001634628) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001456295), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.118957E-08, 0.8111589) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007168098, 0.0001629307) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001471251), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.192487E-08, 0.8111591) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007241537, 0.0001624074) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001486225), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.266016E-08, 0.8111594) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007315067, 0.0001618926) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001501217), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.339725E-08, 0.8111596) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007388685, 0.0001613862) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001516227), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.413337E-08, 0.8111598) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007462387, 0.0001608879) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001531254), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.487125E-08, 0.8111601) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007536175, 0.0001603975) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001546299), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.560991E-08, 0.8111603) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007610042, 0.0001599148) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001561359), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.634941E-08, 0.8111606) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007683991, 0.0001594396) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001576437)}", "samestep": true, "steplink": 30, "creation": true, "gadget_rank": -1, "scroll_label": null, "GadgetFlow": [], - "GadgetTime": 0.541088400001172 + "GadgetTime": 0.38892019999912009 } ], "marker": 288, @@ -4610,10 +4610,10 @@ "backlog": 0, "soft_resetted": false, "invoke": true, - "MaxLabelId": 282, + "MaxLabelId": 278, "UnusedLabelIds": [], "JsonFactSpace": { - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1624": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1098": { "Point": { "x": 0.0, "y": 0.0, @@ -4636,12 +4636,12 @@ "sqrMagnitude": 1.0 }, "s_type": "PointFact", - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1624", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1098", "Label": "A", "hasCustomLabel": false, "LabelId": 1 }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1625": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1099": { "Point": { "x": 0.0, "y": 0.0, @@ -4664,15 +4664,15 @@ "sqrMagnitude": 1.0 }, "s_type": "PointFact", - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1625", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1099", "Label": "B", "hasCustomLabel": false, "LabelId": 2 }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1626": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1100": { "s_type": "LineFact", - "Pid1": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1624", - "Pid2": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1625", + "Pid1": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1098", + "Pid2": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1099", "Dir": { "x": 0.0, "y": 0.0, @@ -4680,12 +4680,12 @@ "magnitude": 1.0, "sqrMagnitude": 1.0 }, - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1626", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1100", "Label": "[AB]", "hasCustomLabel": false, "LabelId": 0 }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1627": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1101": { "Point": { "x": 0.0, "y": 0.0, @@ -4701,12 +4701,12 @@ "sqrMagnitude": 1.0 }, "s_type": "PointFact", - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1627", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1101", "Label": "C", "hasCustomLabel": false, "LabelId": 3 }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1628": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1102": { "Point": { "x": 0.0, "y": 19.6199989, @@ -4729,15 +4729,15 @@ "sqrMagnitude": 1.0 }, "s_type": "PointFact", - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1628", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1102", "Label": "D", "hasCustomLabel": false, "LabelId": 4 }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1629": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1103": { "s_type": "LineFact", - "Pid1": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1627", - "Pid2": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1628", + "Pid1": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1101", + "Pid2": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1102", "Dir": { "x": 0.0, "y": -1.0, @@ -4745,12 +4745,12 @@ "magnitude": 1.0, "sqrMagnitude": 1.0 }, - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1629", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1103", "Label": "[CD]", "hasCustomLabel": false, "LabelId": 0 }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1630": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1104": { "Point": { "x": 0.0, "y": 0.0, @@ -4773,12 +4773,12 @@ "sqrMagnitude": 1.0 }, "s_type": "PointFact", - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1630", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1104", "Label": "E", "hasCustomLabel": false, "LabelId": 5 }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1631": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1105": { "Point": { "x": 0.0, "y": 19.6199989, @@ -4801,15 +4801,15 @@ "sqrMagnitude": 1.0 }, "s_type": "PointFact", - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1631", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1105", "Label": "F", "hasCustomLabel": false, "LabelId": 6 }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1632": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1106": { "s_type": "LineFact", - "Pid1": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1630", - "Pid2": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1631", + "Pid1": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1104", + "Pid2": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1105", "Dir": { "x": 0.0, "y": -1.0, @@ -4817,15 +4817,15 @@ "magnitude": 1.0, "sqrMagnitude": 1.0 }, - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1632", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1106", "Label": "[EF]", "hasCustomLabel": false, "LabelId": 0 }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1635": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1109": { "s_type": "LineFact", - "Pid1": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1628", - "Pid2": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1631", + "Pid1": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1102", + "Pid2": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1105", "Dir": { "x": 0.0, "y": 0.0, @@ -4833,12 +4833,12 @@ "magnitude": 1.0, "sqrMagnitude": 1.0 }, - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1635", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1109", "Label": "[DF]", "hasCustomLabel": false, "LabelId": 0 }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1636": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1110": { "Point": { "x": 0.0, "y": 9.809999, @@ -4861,12 +4861,12 @@ "sqrMagnitude": 1.0 }, "s_type": "PointFact", - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1636", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1110", "Label": "I", "hasCustomLabel": false, "LabelId": 9 }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1637": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1111": { "Point": { "x": 0.0, "y": 13.2783585, @@ -4889,15 +4889,15 @@ "sqrMagnitude": 1.0 }, "s_type": "PointFact", - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1637", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1111", "Label": "J", "hasCustomLabel": false, "LabelId": 10 }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1638": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1112": { "s_type": "LineFact", - "Pid1": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1636", - "Pid2": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1637", + "Pid1": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1110", + "Pid2": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1111", "Dir": { "x": 0.0, "y": -0.707106769, @@ -4905,12 +4905,12 @@ "magnitude": 1.0, "sqrMagnitude": 0.99999994 }, - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1638", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1112", "Label": "[IJ]", "hasCustomLabel": false, "LabelId": 0 }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1639": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1113": { "Point": { "x": 0.0, "y": 4.90499973, @@ -4933,12 +4933,12 @@ "sqrMagnitude": 1.0 }, "s_type": "PointFact", - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1639", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1113", "Label": "K", "hasCustomLabel": false, "LabelId": 11 }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1640": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1114": { "Point": { "x": 0.0, "y": 4.90499973, @@ -4961,15 +4961,15 @@ "sqrMagnitude": 1.0 }, "s_type": "PointFact", - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1640", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1114", "Label": "L", "hasCustomLabel": false, "LabelId": 12 }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1641": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1115": { "s_type": "LineFact", - "Pid1": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1639", - "Pid2": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1640", + "Pid1": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1113", + "Pid2": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1114", "Dir": { "x": 0.0, "y": 0.0, @@ -4977,12 +4977,12 @@ "magnitude": 1.0, "sqrMagnitude": 1.0 }, - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1641", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1115", "Label": "[KL]", "hasCustomLabel": false, "LabelId": 0 }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1642": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1116": { "Point": { "x": 0.0, "y": 9.809999, @@ -5005,12 +5005,12 @@ "sqrMagnitude": 1.0 }, "s_type": "PointFact", - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1642", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1116", "Label": "M", "hasCustomLabel": false, "LabelId": 13 }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1643": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1117": { "Point": { "x": 0.0, "y": 14.0578547, @@ -5033,15 +5033,15 @@ "sqrMagnitude": 1.0 }, "s_type": "PointFact", - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1643", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1117", "Label": "N", "hasCustomLabel": false, "LabelId": 14 }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1644": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1118": { "s_type": "LineFact", - "Pid1": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1642", - "Pid2": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1643", + "Pid1": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1116", + "Pid2": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1117", "Dir": { "x": 0.0, "y": -0.8660255, @@ -5063,12 +5063,12 @@ "magnitude": 1.00000012, "sqrMagnitude": 1.00000012 }, - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1644", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1118", "Label": "[MN]", "hasCustomLabel": false, "LabelId": 0 }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1645": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1119": { "Point": { "x": 0.0, "y": 14.715, @@ -5098,12 +5098,12 @@ "sqrMagnitude": 1.0 }, "s_type": "PointFact", - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1645", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1119", "Label": "O", "hasCustomLabel": false, "LabelId": 15 }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1646": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1120": { "Point": { "x": 0.0, "y": 16.677, @@ -5126,15 +5126,15 @@ "sqrMagnitude": 1.0 }, "s_type": "PointFact", - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1646", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1120", "Label": "P", "hasCustomLabel": false, "LabelId": 16 }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1647": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1121": { "s_type": "LineFact", - "Pid1": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1645", - "Pid2": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1646", + "Pid1": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1119", + "Pid2": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1120", "Dir": { "x": 0.0, "y": -0.49999994, @@ -5149,12 +5149,12 @@ "magnitude": 0.99999994, "sqrMagnitude": 0.99999994 }, - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1647", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1121", "Label": "[OP]", "hasCustomLabel": false, "LabelId": 0 }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1648": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1122": { "Point": { "x": 0.0, "y": 4.90499973, @@ -5177,12 +5177,12 @@ "sqrMagnitude": 1.0 }, "s_type": "PointFact", - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1648", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1122", "Label": "Q", "hasCustomLabel": false, "LabelId": 17 }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1649": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1123": { "Point": { "x": 0.0, "y": 7.3575, @@ -5205,15 +5205,15 @@ "sqrMagnitude": 1.0 }, "s_type": "PointFact", - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1649", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1123", "Label": "R", "hasCustomLabel": false, "LabelId": 18 }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1650": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1124": { "s_type": "LineFact", - "Pid1": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1648", - "Pid2": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1649", + "Pid1": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1122", + "Pid2": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1123", "Dir": { "x": 0.0, "y": -0.5000001, @@ -5221,12 +5221,12 @@ "magnitude": 1.0, "sqrMagnitude": 1.00000012 }, - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1650", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1124", "Label": "[QR]", "hasCustomLabel": false, "LabelId": 0 }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1651": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1125": { "Point": { "x": 0.0, "y": 2.45249987, @@ -5249,12 +5249,12 @@ "sqrMagnitude": 1.0 }, "s_type": "PointFact", - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1651", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1125", "Label": "S", "hasCustomLabel": false, "LabelId": 19 }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1652": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1126": { "Point": { "x": 0.0, "y": 6.70035458, @@ -5277,15 +5277,15 @@ "sqrMagnitude": 1.0 }, "s_type": "PointFact", - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1652", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1126", "Label": "T", "hasCustomLabel": false, "LabelId": 20 }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1653": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1127": { "s_type": "LineFact", - "Pid1": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1651", - "Pid2": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1652", + "Pid1": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1125", + "Pid2": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1126", "Dir": { "x": 0.0, "y": -0.8660254, @@ -5300,15 +5300,15 @@ "magnitude": 0.99999994, "sqrMagnitude": 0.99999994 }, - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1653", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1127", "Label": "[ST]", "hasCustomLabel": false, "LabelId": 0 }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1656": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1130": { "s_type": "LineFact", - "Pid1": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1625", - "Pid2": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1630", + "Pid1": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1099", + "Pid2": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1104", "Dir": { "x": 0.0, "y": 0.0, @@ -5316,15 +5316,15 @@ "magnitude": 1.0, "sqrMagnitude": 1.0 }, - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1656", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1130", "Label": "[BE]", "hasCustomLabel": false, "LabelId": 0 }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1659": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1133": { "s_type": "LineFact", - "Pid1": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1627", - "Pid2": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1624", + "Pid1": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1101", + "Pid2": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1098", "Dir": { "x": 0.0, "y": 0.0, @@ -5332,12 +5332,12 @@ "magnitude": 1.0, "sqrMagnitude": 1.0 }, - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1659", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1133", "Label": "[CA]", "hasCustomLabel": false, "LabelId": 0 }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1660": { + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1134": { "Point": { "x": 0.0, "y": 14.715, @@ -5360,7 +5360,7 @@ "sqrMagnitude": 1.0 }, "s_type": "PointFact", - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1660", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1134", "Label": "Y", "hasCustomLabel": false, "LabelId": 25 @@ -5508,9 +5508,9 @@ "Item2": 0.2859854 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.71507, 18.63876) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.3575, -24.0345) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2859854)", - "Label": "Z", + "Label": "G", "hasCustomLabel": false, - "LabelId": 26 + "LabelId": 7 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 16.41822, 11.76509) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 18.17429, -15.64585) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1854527)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -5655,9 +5655,9 @@ "Item2": 0.185452655 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 16.41822, 11.76509) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 18.17429, -15.64585) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1854527)", - "Label": "[", + "Label": "H", "hasCustomLabel": false, - "LabelId": 27 + "LabelId": 8 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 19.61984, 8.863367) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -16.15633, -15.4558) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5734656)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -5802,9 +5802,9 @@ "Item2": 0.5734656 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 19.61984, 8.863367) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -16.15633, -15.4558) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5734656)", - "Label": "\\", + "Label": "U", "hasCustomLabel": false, - "LabelId": 28 + "LabelId": 21 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.74145, 0.0001512584) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -21.45141, 15.22121) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2155912)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -5949,9 +5949,9 @@ "Item2": 0.215591177 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.74145, 0.0001512584) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -21.45141, 15.22121) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2155912)", - "Label": "]", + "Label": "V", "hasCustomLabel": false, - "LabelId": 29 + "LabelId": 22 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.888747, 3.281431) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.38822, -27.80841) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1180014)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -6096,9 +6096,9 @@ "Item2": 0.118001372 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.888747, 3.281431) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.38822, -27.80841) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1180014)", - "Label": "^", + "Label": "Z", "hasCustomLabel": false, - "LabelId": 30 + "LabelId": 26 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.984262, 0.0002780475) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.2305991, 27.80475) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1191256)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -6243,9 +6243,9 @@ "Item2": 0.11912562 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.984262, 0.0002780475) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.2305991, 27.80475) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1191256)", - "Label": "_", + "Label": "[", "hasCustomLabel": false, - "LabelId": 31 + "LabelId": 27 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.94236, 3.31239) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 23.42652, -14.6) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2268761)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -6390,9 +6390,9 @@ "Item2": 0.22687605 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.94236, 3.31239) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 23.42652, -14.6) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2268761)", - "Label": "`", + "Label": "\\", "hasCustomLabel": false, - "LabelId": 32 + "LabelId": 28 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 9.005012, 0.0001435129) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 20.87433, 14.37513) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.590435)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -6537,9 +6537,9 @@ "Item2": 0.590435 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 9.005012, 0.0001435129) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 20.87433, 14.37513) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.590435)", - "Label": "a", + "Label": "]", "hasCustomLabel": false, - "LabelId": 33 + "LabelId": 29 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 19.61985, 8.487865) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -14.8994, 14.20093) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.691238)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -6684,9 +6684,9 @@ "Item2": 0.691238 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 19.61985, 8.487865) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -14.8994, 14.20093) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.691238)", - "Label": "b", + "Label": "^", "hasCustomLabel": false, - "LabelId": 34 + "LabelId": 30 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.977393, 18.30397) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 23.09713, -11.65444) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3922241)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -6831,9 +6831,9 @@ "Item2": 0.3922241 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.977393, 18.30397) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 23.09713, -11.65444) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3922241)", - "Label": "c", + "Label": "_", "hasCustomLabel": false, - "LabelId": 35 + "LabelId": 31 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 15.28206, 13.7326) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.4603704, -22.11528) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.6209553)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -6978,9 +6978,9 @@ "Item2": 0.6209553 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 15.28206, 13.7326) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.4603704, -22.11528) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.6209553)", - "Label": "d", + "Label": "`", "hasCustomLabel": false, - "LabelId": 36 + "LabelId": 32 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 13.67658, 0.0002202752) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -5.608852, 22.02752) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2200489)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -7125,9 +7125,9 @@ "Item2": 0.2200489 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 13.67658, 0.0002202752) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -5.608852, 22.02752) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2200489)", - "Label": "e", + "Label": "a", "hasCustomLabel": false, - "LabelId": 37 + "LabelId": 33 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 12.20507, 4.847275) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 22.02752, -7.767531) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3665375)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -7272,9 +7272,9 @@ "Item2": 0.366537482 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 12.20507, 4.847275) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 22.02752, -7.767531) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3665375)", - "Label": "f", + "Label": "b", "hasCustomLabel": false, - "LabelId": 38 + "LabelId": 34 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 19.61982, 2.000106) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -18.31479, -7.718225) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2591408)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -7419,9 +7419,9 @@ "Item2": 0.2591408 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 19.61982, 2.000106) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -18.31479, -7.718225) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2591408)", - "Label": "g", + "Label": "c", "hasCustomLabel": false, - "LabelId": 39 + "LabelId": 35 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.54411, 7.497284E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -20.45319, 7.56881) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.456389)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -7566,9 +7566,9 @@ "Item2": 0.45638898 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.54411, 7.497284E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -20.45319, 7.56881) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.456389)", - "Label": "h", + "Label": "d", "hasCustomLabel": false, - "LabelId": 40 + "LabelId": 36 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.187777, 3.454145) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -5.839626, -25.07086) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1377753)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -7713,9 +7713,9 @@ "Item2": 0.137775332 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.187777, 3.454145) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -5.839626, -25.07086) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1377753)", - "Label": "i", + "Label": "e", "hasCustomLabel": false, - "LabelId": 41 + "LabelId": 37 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.290042, 0.0002493555) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -7.159229, 24.9594) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.09993961)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -7860,9 +7860,9 @@ "Item2": 0.09993961 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.290042, 0.0002493555) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -7.159229, 24.9594) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.09993961)", - "Label": "j", + "Label": "f", "hasCustomLabel": false, - "LabelId": 42 + "LabelId": 38 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.525736, 2.494487) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 17.48746, -19.46407) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1281586)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -8007,9 +8007,9 @@ "Item2": 0.128158569 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.525736, 2.494487) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 17.48746, -19.46407) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1281586)", - "Label": "k", + "Label": "g", "hasCustomLabel": false, - "LabelId": 43 + "LabelId": 39 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.686502, 0.0001922491) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 16.05069, 19.24876) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4696551)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -8154,9 +8154,9 @@ "Item2": 0.4696551 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.686502, 0.0001922491) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 16.05069, 19.24876) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4696551)", - "Label": "l", + "Label": "h", "hasCustomLabel": false, - "LabelId": 44 + "LabelId": 40 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.14276, 9.040274) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -10.946, -19.53067) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4628757)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -8301,9 +8301,9 @@ "Item2": 0.462875724 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.14276, 9.040274) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -10.946, -19.53067) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4628757)", - "Label": "m", + "Label": "i", "hasCustomLabel": false, - "LabelId": 45 + "LabelId": 41 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.025051, 0.0001932228) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -15.32156, 19.32228) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1378767)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -8448,9 +8448,9 @@ "Item2": 0.13787666 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.025051, 0.0001932228) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -15.32156, 19.32228) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1378767)", - "Label": "n", + "Label": "j", "hasCustomLabel": false, - "LabelId": 46 + "LabelId": 42 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.819405, 2.664044) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.37134, -24.0291) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1108674)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -8595,9 +8595,9 @@ "Item2": 0.1108674 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.819405, 2.664044) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.37134, -24.0291) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1108674)", - "Label": "o", + "Label": "k", "hasCustomLabel": false, - "LabelId": 47 + "LabelId": 43 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.687296, 0.0002391654) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.249614, 23.91654) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1568838)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -8742,9 +8742,9 @@ "Item2": 0.156883776 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.687296, 0.0002391654) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.249614, 23.91654) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1568838)", - "Label": "p", + "Label": "l", "hasCustomLabel": false, - "LabelId": 48 + "LabelId": 44 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.704151, 3.752287) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 23.28331, -6.928161) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5415995)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -8889,9 +8889,9 @@ "Item2": 0.541599452 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.704151, 3.752287) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 23.28331, -6.928161) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5415995)", - "Label": "q", + "Label": "m", "hasCustomLabel": false, - "LabelId": 49 + "LabelId": 45 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 15.87577, 6.724003E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 17.62621, 6.795529) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.226729)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -9036,9 +9036,9 @@ "Item2": 0.226728961 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 15.87577, 6.724003E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 17.62621, 6.795529) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.226729)", - "Label": "r", + "Label": "n", "hasCustomLabel": false, - "LabelId": 50 + "LabelId": 46 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 19.61985, 1.540878) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -15.30014, 6.750589) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4426361)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -9183,9 +9183,9 @@ "Item2": 0.4426361 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 19.61985, 1.540878) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -15.30014, 6.750589) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4426361)", - "Label": "s", + "Label": "o", "hasCustomLabel": false, - "LabelId": 51 + "LabelId": 47 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.8865, 4.528736) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.750587, -19.6424) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2305592)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -9330,9 +9330,9 @@ "Item2": 0.23055923 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.8865, 4.528736) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.750587, -19.6424) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2305592)", - "Label": "t", + "Label": "p", "hasCustomLabel": false, - "LabelId": 52 + "LabelId": 48 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 13.18222, 0.0001952448) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.472753, 19.57217) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.002434)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -9477,9 +9477,9 @@ "Item2": 1.0024339 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 13.18222, 0.0001952448) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.472753, 19.57217) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.002434)", - "Label": "u", + "Label": "q", "hasCustomLabel": false, - "LabelId": 53 + "LabelId": 49 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 12.7369, 19.6198) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -5.33831, -19.48888) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.7929868)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -9624,9 +9624,9 @@ "Item2": 0.792986751 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 12.7369, 19.6198) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -5.33831, -19.48888) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.7929868)", - "Label": "v", + "Label": "r", "hasCustomLabel": false, - "LabelId": 54 + "LabelId": 50 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.419057, 4.16536) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -23.02034, -1.586958) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2246498)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -9771,9 +9771,9 @@ "Item2": 0.224649787 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.419057, 4.16536) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -23.02034, -1.586958) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2246498)", - "Label": "w", + "Label": "s", "hasCustomLabel": false, - "LabelId": 55 + "LabelId": 51 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.000250105, 3.808835) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 24.99714, -1.572675) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1788682)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -9918,9 +9918,9 @@ "Item2": 0.17886816 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.000250105, 3.808835) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 24.99714, -1.572675) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1788682)", - "Label": "x", + "Label": "t", "hasCustomLabel": false, - "LabelId": 56 + "LabelId": 52 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.314614, 3.527739) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.09929, 20.58879) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.7816031)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -10065,9 +10065,9 @@ "Item2": 0.7816031 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.314614, 3.527739) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.09929, 20.58879) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.7816031)", - "Label": "y", + "Label": "u", "hasCustomLabel": false, - "LabelId": 57 + "LabelId": 53 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 9.211795, 19.61979) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.427216, -20.55026) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.9547223)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -10212,9 +10212,9 @@ "Item2": 0.9547223 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 9.211795, 19.61979) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.427216, -20.55026) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.9547223)", - "Label": "z", + "Label": "v", "hasCustomLabel": false, - "LabelId": 58 + "LabelId": 54 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.058162, 0.0002044376) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -6.902648, 20.44376) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2043911)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -10359,9 +10359,9 @@ "Item2": 0.204391062 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.058162, 0.0002044376) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -6.902648, 20.44376) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2043911)", - "Label": "{", + "Label": "w", "hasCustomLabel": false, - "LabelId": 59 + "LabelId": 55 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.442544, 4.178548) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 13.22719, -17.90403) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.233386)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -10506,9 +10506,9 @@ "Item2": 0.23338595 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.442544, 4.178548) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 13.22719, -17.90403) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.233386)", - "Label": "|", + "Label": "x", "hasCustomLabel": false, - "LabelId": 60 + "LabelId": 56 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.262522, 0.0001770008) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.84221, 17.74776) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4721227)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -10653,9 +10653,9 @@ "Item2": 0.4721227 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.262522, 0.0001770008) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.84221, 17.74776) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4721227)", - "Label": "}", + "Label": "y", "hasCustomLabel": false, - "LabelId": 61 + "LabelId": 57 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 12.28793, 8.379155) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -12.22817, -14.21008) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5896627)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -10800,9 +10800,9 @@ "Item2": 0.5896627 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 12.28793, 8.379155) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -12.22817, -14.21008) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5896627)", - "Label": "~", + "Label": "z", "hasCustomLabel": false, - "LabelId": 62 + "LabelId": 58 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.371777, 0.0001400589) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -17.75392, 14.00589) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1808783)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -10947,9 +10947,9 @@ "Item2": 0.180878326 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.371777, 0.0001400589) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -17.75392, 14.00589) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1808783)", - "Label": "", + "Label": "{", "hasCustomLabel": false, - "LabelId": 63 + "LabelId": 59 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0001780728, 2.53363) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 17.78795, 12.75767) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.339301)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -11094,9 +11094,9 @@ "Item2": 1.33930135 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0001780728, 2.53363) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 17.78795, 12.75767) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.339301)", - "Label": "€", + "Label": "|", "hasCustomLabel": false, - "LabelId": 64 + "LabelId": 60 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 15.02542, 19.61987) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.623549, -12.68671) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5710809)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -11241,9 +11241,9 @@ "Item2": 0.571080863 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 15.02542, 19.61987) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.623549, -12.68671) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5710809)", - "Label": "Â", + "Label": "}", "hasCustomLabel": false, - "LabelId": 65 + "LabelId": 61 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 16.06627, 12.37468) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.29918, -5.410871) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3758278)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -11388,9 +11388,9 @@ "Item2": 0.37582776 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 16.06627, 12.37468) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.29918, -5.410871) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3758278)", - "Label": "‚", + "Label": "~", "hasCustomLabel": false, - "LabelId": 66 + "LabelId": 62 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 19.61992, 10.34107) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -7.537445, -5.357656) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5498449)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -11535,9 +11535,9 @@ "Item2": 0.549844861 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 19.61992, 10.34107) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -7.537445, -5.357656) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5498449)", - "Label": "ƒ", + "Label": "", "hasCustomLabel": false, - "LabelId": 67 + "LabelId": 63 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 13.99255, 7.395328) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -1.80683, 13.73323) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.8901526)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -11682,9 +11682,9 @@ "Item2": 0.890152633 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 13.99255, 7.395328) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -1.80683, 13.73323) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.8901526)", - "Label": "„", + "Label": "€", "hasCustomLabel": false, - "LabelId": 68 + "LabelId": 64 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.497512, 19.61986) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -10.42943, -13.59016) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2104124)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -11829,9 +11829,9 @@ "Item2": 0.210412368 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.497512, 19.61986) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -10.42943, -13.59016) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2104124)", - "Label": "\u0085", + "Label": "Â", "hasCustomLabel": false, - "LabelId": 69 + "LabelId": 65 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.085816, 16.76016) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -5.285142, -16.85733) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.698581)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -11976,9 +11976,9 @@ "Item2": 0.69858104 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.085816, 16.76016) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -5.285142, -16.85733) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.698581)", - "Label": "†", + "Label": "‚", "hasCustomLabel": false, - "LabelId": 70 + "LabelId": 66 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0001051595, 4.983803) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.49216, -14.57131) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3420286)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -12123,9 +12123,9 @@ "Item2": 0.342028558 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0001051595, 4.983803) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.49216, -14.57131) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3420286)", - "Label": "‡", + "Label": "ƒ", "hasCustomLabel": false, - "LabelId": 71 + "LabelId": 67 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.014989, 0.0001446568) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.085127, 14.46568) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2505379)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -12270,9 +12270,9 @@ "Item2": 0.250537932 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.014989, 0.0001446568) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.085127, 14.46568) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2505379)", - "Label": "ˆ", + "Label": "„", "hasCustomLabel": false, - "LabelId": 72 + "LabelId": 68 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.482346, 3.624316) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.64452, -3.182668) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.138767)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -12417,9 +12417,9 @@ "Item2": 1.13876677 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.482346, 3.624316) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.64452, -3.182668) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.138767)", - "Label": "‰", + "Label": "\u0085", "hasCustomLabel": false, - "LabelId": 73 + "LabelId": 69 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.79832, 3.069148E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.42739, 3.140674) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.261231)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -12564,9 +12564,9 @@ "Item2": 1.261231 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.79832, 3.069148E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.42739, 3.140674) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.261231)", - "Label": "Š", + "Label": "†", "hasCustomLabel": false, - "LabelId": 74 + "LabelId": 70 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.31868, 3.961057) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.140674, -8.945286) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4428095)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -12711,9 +12711,9 @@ "Item2": 0.442809463 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.31868, 3.961057) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.140674, -8.945286) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4428095)", - "Label": "‹", + "Label": "‡", "hasCustomLabel": false, - "LabelId": 75 + "LabelId": 71 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.74761, 8.878566E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -1.200725, 8.92625) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3679302)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -12858,9 +12858,9 @@ "Item2": 0.3679302 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.74761, 8.878566E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -1.200725, 8.92625) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3679302)", - "Label": "ÂŒ", + "Label": "ˆ", "hasCustomLabel": false, - "LabelId": 76 + "LabelId": 72 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.64192, 3.284277) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.92625, -4.81012) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.682785)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -13005,9 +13005,9 @@ "Item2": 0.682785034 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.64192, 3.284277) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.92625, -4.81012) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.682785)", - "Label": "Â", + "Label": "‰", "hasCustomLabel": false, - "LabelId": 77 + "LabelId": 73 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.44996, 4.729227E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.212746, 4.776911) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.9691768)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -13152,9 +13152,9 @@ "Item2": 0.969176769 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.44996, 4.729227E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.212746, 4.776911) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.9691768)", - "Label": "ÂŽ", + "Label": "Š", "hasCustomLabel": false, - "LabelId": 78 + "LabelId": 74 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.98726, 4.629645) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.776911, -7.294877) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.6346434)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -13299,9 +13299,9 @@ "Item2": 0.634643435 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.98726, 4.629645) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.776911, -7.294877) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.6346434)", - "Label": "Â", + "Label": "‹", "hasCustomLabel": false, - "LabelId": 79 + "LabelId": 75 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 13.04329, 7.224429E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -1.444419, 7.272113) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5074097)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -13446,9 +13446,9 @@ "Item2": 0.5074097 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 13.04329, 7.224429E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -1.444419, 7.272113) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5074097)", - "Label": "Â", + "Label": "ÂŒ", "hasCustomLabel": false, - "LabelId": 80 + "LabelId": 76 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.04758, 3.689949) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.272113, -6.422107) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5745698)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -13593,9 +13593,9 @@ "Item2": 0.5745698 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.04758, 3.689949) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.272113, -6.422107) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5745698)", - "Label": "‘", + "Label": "Â", "hasCustomLabel": false, - "LabelId": 81 + "LabelId": 77 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 13.60665, 6.348934E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.629092, 6.396618) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.7429182)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -13740,9 +13740,9 @@ "Item2": 0.7429182 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 13.60665, 6.348934E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.629092, 6.396618) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.7429182)", - "Label": "Â’", + "Label": "ÂŽ", "hasCustomLabel": false, - "LabelId": 82 + "LabelId": 78 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 12.10979, 4.752171) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.396617, -5.658934) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.8397644)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -13887,9 +13887,9 @@ "Item2": 0.839764357 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 12.10979, 4.752171) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.396617, -5.658934) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.8397644)", - "Label": "“", + "Label": "Â", "hasCustomLabel": false, - "LabelId": 83 + "LabelId": 79 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.0224, 5.582916E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -1.83225, 5.630599) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.6312054)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -14034,9 +14034,9 @@ "Item2": 0.6312054 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.0224, 5.582916E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -1.83225, 5.630599) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.6312054)", - "Label": "”", + "Label": "Â", "hasCustomLabel": false, - "LabelId": 84 + "LabelId": 80 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.91168, 3.55404) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.630599, -8.024374) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4429057)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -14181,9 +14181,9 @@ "Item2": 0.442905664 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.91168, 3.55404) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.630599, -8.024374) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4429057)", - "Label": "•", + "Label": "‘", "hasCustomLabel": false, - "LabelId": 85 + "LabelId": 81 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 12.44332, 7.9564E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.282444, 8.004084) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5421413)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -14328,9 +14328,9 @@ "Item2": 0.5421413 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 12.44332, 7.9564E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.282444, 8.004084) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5421413)", - "Label": "–", + "Label": "Â’", "hasCustomLabel": false, - "LabelId": 86 + "LabelId": 82 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.697, 4.339384) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.004084, -4.035961) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.07518)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -14475,9 +14475,9 @@ "Item2": 1.07517993 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.697, 4.339384) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.004084, -4.035961) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.07518)", - "Label": "—", + "Label": "“", "hasCustomLabel": false, - "LabelId": 87 + "LabelId": 83 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.63257, 3.904473E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -2.520668, 3.99984) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.7227589)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -14622,9 +14622,9 @@ "Item2": 0.7227589 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.63257, 3.904473E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -2.520668, 3.99984) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.7227589)", - "Label": "˜", + "Label": "”", "hasCustomLabel": false, - "LabelId": 88 + "LabelId": 84 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.2485, 2.890863) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.99984, -9.610931) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3007891)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -14769,9 +14769,9 @@ "Item2": 0.300789118 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.2485, 2.890863) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.99984, -9.610931) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3007891)", - "Label": "™", + "Label": "•", "hasCustomLabel": false, - "LabelId": 89 + "LabelId": 85 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.00784, 9.546617E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.047284, 9.5943) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3548257)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -14916,9 +14916,9 @@ "Item2": 0.354825735 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.00784, 9.546617E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.047284, 9.5943) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3548257)", - "Label": "š", + "Label": "–", "hasCustomLabel": false, - "LabelId": 90 + "LabelId": 86 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.762, 3.404376) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 9.594299, -2.433555) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.398931)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -15063,9 +15063,9 @@ "Item2": 1.39893126 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.762, 3.404376) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 9.594299, -2.433555) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.398931)", - "Label": "›", + "Label": "—", "hasCustomLabel": false, - "LabelId": 91 + "LabelId": 87 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.58459, 2.345659E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -4.060983, 2.393343) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.173249)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -15210,9 +15210,9 @@ "Item2": 1.17324853 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.58459, 2.345659E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -4.060983, 2.393343) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.173249)", - "Label": "Âœ", + "Label": "˜", "hasCustomLabel": false, - "LabelId": 92 + "LabelId": 88 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.068203, 2.807865) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -5.631238, -14.47211) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.194019)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -15357,9 +15357,9 @@ "Item2": 0.19401899 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.068203, 2.807865) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -5.631238, -14.47211) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.194019)", - "Label": "Â", + "Label": "™", "hasCustomLabel": false, - "LabelId": 93 + "LabelId": 89 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.790921, 0.0001436155) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -7.477002, 14.36155) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2104654)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -15504,9 +15504,9 @@ "Item2": 0.210465446 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.790921, 0.0001436155) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -7.477002, 14.36155) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2104654)", - "Label": "ž", + "Label": "š", "hasCustomLabel": false, - "LabelId": 94 + "LabelId": 90 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.190275E-05, 3.022877) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.196284, 12.33656) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.345361)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -15651,9 +15651,9 @@ "Item2": 1.34536064 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.190275E-05, 3.022877) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.196284, 12.33656) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.345361)", - "Label": "Ÿ", + "Label": "›", "hasCustomLabel": false, - "LabelId": 95 + "LabelId": 91 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.148965, 19.61988) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -4.971041, -12.26093) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3268713)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -15798,9 +15798,9 @@ "Item2": 0.3268713 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.148965, 19.61988) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -4.971041, -12.26093) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3268713)", - "Label": " ", + "Label": "Âœ", "hasCustomLabel": false, - "LabelId": 96 + "LabelId": 92 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.422212E-05, 15.61202) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.41034, -11.11049) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.40516)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -15945,9 +15945,9 @@ "Item2": 1.40516031 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.422212E-05, 15.61202) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.41034, -11.11049) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.40516)", - "Label": "¡", + "Label": "Â", "hasCustomLabel": false, - "LabelId": 97 + "LabelId": 93 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.727924, 0.0001111375) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -6.321439, 11.01838) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.106372)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -16092,9 +16092,9 @@ "Item2": 0.106371976 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.727924, 0.0001111375) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -6.321439, 11.01838) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.106372)", - "Label": "¢", + "Label": "ž", "hasCustomLabel": false, - "LabelId": 98 + "LabelId": 94 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.326775E-05, 1.172253) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.329431, 9.469191) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.290414)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -16239,9 +16239,9 @@ "Item2": 1.290414 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.326775E-05, 1.172253) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.329431, 9.469191) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.290414)", - "Label": "£", + "Label": "Ÿ", "hasCustomLabel": false, - "LabelId": 99 + "LabelId": 95 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.318291E-05, 13.39154) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.31834, 10.94849) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5688878)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -16386,9 +16386,9 @@ "Item2": 0.5688878 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.318291E-05, 13.39154) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.31834, 10.94849) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5688878)", - "Label": "¤", + "Label": " ", "hasCustomLabel": false, - "LabelId": 100 + "LabelId": 96 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.575984, 19.61989) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.733199, -10.92106) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.9225922)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -16533,9 +16533,9 @@ "Item2": 0.922592163 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.575984, 19.61989) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.733199, -10.92106) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.9225922)", - "Label": "Â¥", + "Label": "¡", "hasCustomLabel": false, - "LabelId": 101 + "LabelId": 97 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.242024E-05, 9.544113) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.289756, -9.387285) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.016706)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -16680,9 +16680,9 @@ "Item2": 1.01670647 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.242024E-05, 9.544113) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.289756, -9.387285) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.016706)", - "Label": "¦", + "Label": "¢", "hasCustomLabel": false, - "LabelId": 102 + "LabelId": 98 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.324602, 9.331409E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -3.662205, 9.331409) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2665415)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -16827,9 +16827,9 @@ "Item2": 0.2665415 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.324602, 9.331409E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -3.662205, 9.331409) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2665415)", - "Label": "§", + "Label": "£", "hasCustomLabel": false, - "LabelId": 103 + "LabelId": 99 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.402976E-05, 2.487381) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.397064, 8.023324) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.100329)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -16974,9 +16974,9 @@ "Item2": 1.10032892 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.402976E-05, 2.487381) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.397064, 8.023324) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.100329)", - "Label": "¨", + "Label": "¤", "hasCustomLabel": false, - "LabelId": 104 + "LabelId": 100 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.64054E-05, 11.31575) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.640589, 6.898616) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.9461036)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -17121,9 +17121,9 @@ "Item2": 0.9461036 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.64054E-05, 11.31575) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.640589, 6.898616) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.9461036)", - "Label": "©", + "Label": "Â¥", "hasCustomLabel": false, - "LabelId": 105 + "LabelId": 101 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.206955E-05, 17.84262) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.207005, 6.253925) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2842029)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -17268,9 +17268,9 @@ "Item2": 0.2842029 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.206955E-05, 17.84262) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.207005, 6.253925) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2842029)", - "Label": "ª", + "Label": "¦", "hasCustomLabel": false, - "LabelId": 106 + "LabelId": 102 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.799516, 19.61994) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.413935, -6.231718) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5728211)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -17415,9 +17415,9 @@ "Item2": 0.5728211 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.799516, 19.61994) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.413935, -6.231718) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5728211)", - "Label": "«", + "Label": "§", "hasCustomLabel": false, - "LabelId": 107 + "LabelId": 103 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.801053E-05, 16.05022) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.813024, -5.650228) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.7773848)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -17562,9 +17562,9 @@ "Item2": 0.7773848 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.801053E-05, 16.05022) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.813024, -5.650228) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.7773848)", - "Label": "¬", + "Label": "¨", "hasCustomLabel": false, - "LabelId": 108 + "LabelId": 104 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.303209E-05, 11.65777) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.279417, -4.859393) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.6685966)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -17709,9 +17709,9 @@ "Item2": 0.668596566 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.303209E-05, 11.65777) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.279417, -4.859393) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.6685966)", - "Label": "Â", + "Label": "©", "hasCustomLabel": false, - "LabelId": 109 + "LabelId": 105 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.844296E-05, 8.408755) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.820503, -4.179256) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5750363)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -17856,9 +17856,9 @@ "Item2": 0.5750363 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.844296E-05, 8.408755) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.820503, -4.179256) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5750363)", - "Label": "®", + "Label": "ª", "hasCustomLabel": false, - "LabelId": 110 + "LabelId": 106 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.4377E-05, 6.005496) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.425828, -3.594323) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4945723)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -18003,9 +18003,9 @@ "Item2": 0.494572341 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.4377E-05, 6.005496) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.425828, -3.594323) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4945723)", - "Label": "¯", + "Label": "«", "hasCustomLabel": false, - "LabelId": 111 + "LabelId": 107 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.086349E-05, 4.227811) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.086398, -3.091268) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4253715)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -18150,9 +18150,9 @@ "Item2": 0.425371468 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.086349E-05, 4.227811) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.086398, -3.091268) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4253715)", - "Label": "°", + "Label": "¬", "hasCustomLabel": false, - "LabelId": 112 + "LabelId": 108 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.794431E-05, 2.912848) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.79448, -2.658629) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3658572)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -18297,9 +18297,9 @@ "Item2": 0.365857184 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.794431E-05, 2.912848) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.79448, -2.658629) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3658572)", - "Label": "±", + "Label": "Â", "hasCustomLabel": false, - "LabelId": 113 + "LabelId": 109 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.543375E-05, 1.940146) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.543425, -2.28655) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3146735)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -18444,9 +18444,9 @@ "Item2": 0.314673543 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.543375E-05, 1.940146) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.543425, -2.28655) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3146735)", - "Label": "²", + "Label": "®", "hasCustomLabel": false, - "LabelId": 114 + "LabelId": 110 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.330442E-05, 1.220609) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.327511, -1.966554) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2706544)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -18591,9 +18591,9 @@ "Item2": 0.27065444 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.330442E-05, 1.220609) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.327511, -1.966554) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2706544)", - "Label": "³", + "Label": "¯", "hasCustomLabel": false, - "LabelId": 115 + "LabelId": 111 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.141771E-05, 0.688336) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.14182, -1.69135) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.232797)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -18738,9 +18738,9 @@ "Item2": 0.232797027 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.141771E-05, 0.688336) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.14182, -1.69135) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.232797)", - "Label": "´", + "Label": "°", "hasCustomLabel": false, - "LabelId": 116 + "LabelId": 112 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 9.820731E-06, 0.2945802) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.9821221, -1.454668) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2002388)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -18885,9 +18885,9 @@ "Item2": 0.200238779 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 9.820731E-06, 0.2945802) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.9821221, -1.454668) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2002388)", - "Label": "µ", + "Label": "±", "hasCustomLabel": false, - "LabelId": 117 + "LabelId": 113 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.44729E-06, 0.003286785) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.8447781, -1.251116) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.002627082)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -19032,9 +19032,9 @@ "Item2": 0.002627082 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.44729E-06, 0.003286785) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.8447781, -1.251116) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.002627082)", - "Label": "¶", + "Label": "²", "hasCustomLabel": false, - "LabelId": 118 + "LabelId": 114 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002202011, 1.239552E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.8114513, 1.239575) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1681041)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -19179,9 +19179,9 @@ "Item2": 0.168104067 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002202011, 1.239552E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.8114513, 1.239575) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1681041)", - "Label": "·", + "Label": "³", "hasCustomLabel": false, - "LabelId": 119 + "LabelId": 115 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.204322E-06, 0.2084007) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.7204813, 1.066187) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1468971)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -19326,9 +19326,9 @@ "Item2": 0.146897122 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.204322E-06, 0.2084007) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.7204813, 1.066187) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1468971)", - "Label": "¸", + "Label": "´", "hasCustomLabel": false, - "LabelId": 120 + "LabelId": 116 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.197441E-06, 0.3650296) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.6197932, 0.9170609) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1263695)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -19473,9 +19473,9 @@ "Item2": 0.126369476 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.197441E-06, 0.3650296) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.6197932, 0.9170609) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1263695)", - "Label": "¹", + "Label": "µ", "hasCustomLabel": false, - "LabelId": 121 + "LabelId": 117 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.331456E-06, 0.480926) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.5331947, 0.7888028) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1087143)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -19620,9 +19620,9 @@ "Item2": 0.10871432 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.331456E-06, 0.480926) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.5331947, 0.7888028) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1087143)", - "Label": "º", + "Label": "¶", "hasCustomLabel": false, - "LabelId": 122 + "LabelId": 118 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.582926E-06, 0.5666869) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.4587142, 0.6784922) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0935297)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -19767,9 +19767,9 @@ "Item2": 0.0935297 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.582926E-06, 0.5666869) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.4587142, 0.6784922) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0935297)", - "Label": "»", + "Label": "·", "hasCustomLabel": false, - "LabelId": 123 + "LabelId": 119 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.946068E-06, 0.6301519) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.3946559, 0.5836178) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.08046991)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -19914,9 +19914,9 @@ "Item2": 0.0804699138 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.946068E-06, 0.6301519) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.3946559, 0.5836178) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.08046991)", - "Label": "¼", + "Label": "¸", "hasCustomLabel": false, - "LabelId": 124 + "LabelId": 120 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.391399E-06, 0.6771206) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.3395615, 0.5020194) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.06923762)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -20061,9 +20061,9 @@ "Item2": 0.06923762 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.391399E-06, 0.6771206) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.3395615, 0.5020194) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.06923762)", - "Label": "½", + "Label": "¹", "hasCustomLabel": false, - "LabelId": 125 + "LabelId": 121 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.921276E-06, 0.7118835) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.2921766, 0.4318393) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0595771)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -20208,9 +20208,9 @@ "Item2": 0.0595770963 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.921276E-06, 0.7118835) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.2921766, 0.4318393) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0595771)", - "Label": "¾", + "Label": "º", "hasCustomLabel": false, - "LabelId": 126 + "LabelId": 122 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.513734E-06, 0.737615) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.2514225, 0.3714797) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0512684)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -20355,9 +20355,9 @@ "Item2": 0.0512684025 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.513734E-06, 0.737615) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.2514225, 0.3714797) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0512684)", - "Label": "¿", + "Label": "»", "hasCustomLabel": false, - "LabelId": 127 + "LabelId": 123 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.163221E-06, 0.7566634) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.2163712, 0.3195664) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.04412237)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -20502,9 +20502,9 @@ "Item2": 0.0441223681 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.163221E-06, 0.7566634) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.2163712, 0.3195664) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.04412237)", - "Label": "À", + "Label": "¼", "hasCustomLabel": false, - "LabelId": 128 + "LabelId": 124 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.862688E-06, 0.7707661) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.1862247, 0.2749174) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.03797631)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -20649,9 +20649,9 @@ "Item2": 0.03797631 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.862688E-06, 0.7707661) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.1862247, 0.2749174) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.03797631)", - "Label": "Ã", + "Label": "½", "hasCustomLabel": false, - "LabelId": 129 + "LabelId": 125 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.602478E-06, 0.7812089) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.1602968, 0.2365163) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.03269029)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -20796,9 +20796,9 @@ "Item2": 0.03269029 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.602478E-06, 0.7812089) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.1602968, 0.2365163) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.03269029)", - "Label": "Â", + "Label": "¾", "hasCustomLabel": false, - "LabelId": 130 + "LabelId": 126 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.379015E-06, 0.7889427) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.1379971, 0.2034888) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.02814396)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -20943,9 +20943,9 @@ "Item2": 0.0281439573 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.379015E-06, 0.7889427) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.1379971, 0.2034888) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.02814396)", - "Label": "Ã", + "Label": "¿", "hasCustomLabel": false, - "LabelId": 131 + "LabelId": 127 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.18792E-06, 0.7946714) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.1188178, 0.175083) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.02423381)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -21090,9 +21090,9 @@ "Item2": 0.0242338087 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.18792E-06, 0.7946714) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.1188178, 0.175083) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.02423381)", - "Label": "Ä", + "Label": "À", "hasCustomLabel": false, - "LabelId": 132 + "LabelId": 128 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.022733E-06, 0.7989158) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.1023224, 0.150652) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.02087083)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -21237,9 +21237,9 @@ "Item2": 0.0208708253 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.022733E-06, 0.7989158) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.1023224, 0.150652) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.02087083)", - "Label": "Ã…", + "Label": "Ã", "hasCustomLabel": false, - "LabelId": 133 + "LabelId": 129 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.80862E-07, 0.8020613) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.08813525, 0.1296397) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.01797844)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -21384,9 +21384,9 @@ "Item2": 0.017978441 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.80862E-07, 0.8020613) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.08813525, 0.1296397) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.01797844)", - "Label": "Æ", + "Label": "Â", "hasCustomLabel": false, - "LabelId": 134 + "LabelId": 130 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.589597E-07, 0.8043932) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.07593338, 0.1115677) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0154908)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -21531,9 +21531,9 @@ "Item2": 0.0154908011 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.589597E-07, 0.8043932) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.07593338, 0.1115677) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0154908)", - "Label": "Ç", + "Label": "Ã", "hasCustomLabel": false, - "LabelId": 135 + "LabelId": 131 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.537832E-07, 0.8061224) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.06543901, 0.09602457) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.01335127)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -21678,9 +21678,9 @@ "Item2": 0.01335127 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.537832E-07, 0.8061224) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.06543901, 0.09602457) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.01335127)", - "Label": "È", + "Label": "Ä", "hasCustomLabel": false, - "LabelId": 136 + "LabelId": 132 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.63641E-07, 0.8074053) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.05641315, 0.08265641) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.01151113)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -21825,9 +21825,9 @@ "Item2": 0.0115111349 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.63641E-07, 0.8074053) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.05641315, 0.08265641) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.01151113)", - "Label": "É", + "Label": "Ã…", "hasCustomLabel": false, - "LabelId": 137 + "LabelId": 133 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.85955E-07, 0.8083575) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.04865037, 0.07115889) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.009928506)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -21972,9 +21972,9 @@ "Item2": 0.009928506 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.85955E-07, 0.8083575) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.04865037, 0.07115889) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.009928506)", - "Label": "Ê", + "Label": "Æ", "hasCustomLabel": false, - "LabelId": 138 + "LabelId": 134 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.192195E-07, 0.8090646) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.04197391, 0.06127021) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.008567349)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -22119,9 +22119,9 @@ "Item2": 0.008567349 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.192195E-07, 0.8090646) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.04197391, 0.06127021) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.008567349)", - "Label": "Ë", + "Label": "Ç", "hasCustomLabel": false, - "LabelId": 139 + "LabelId": 135 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.617982E-07, 0.80959) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.03623178, 0.05276527) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.007396676)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -22266,9 +22266,9 @@ "Item2": 0.00739667565 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.617982E-07, 0.80959) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.03623178, 0.05276527) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.007396676)", - "Label": "ÃŒ", + "Label": "È", "hasCustomLabel": false, - "LabelId": 140 + "LabelId": 136 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.124417E-07, 0.8099808) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.03129322, 0.04545041) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.006389831)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -22413,9 +22413,9 @@ "Item2": 0.006389831 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.124417E-07, 0.8099808) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.03129322, 0.04545041) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.006389831)", - "Label": "Ã", + "Label": "É", "hasCustomLabel": false, - "LabelId": 141 + "LabelId": 137 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.699823E-07, 0.8102716) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.02704583, 0.03915911) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.005523895)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -22560,9 +22560,9 @@ "Item2": 0.00552389538 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.699823E-07, 0.8102716) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.02704583, 0.03915911) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.005523895)", - "Label": "ÃŽ", + "Label": "Ê", "hasCustomLabel": false, - "LabelId": 142 + "LabelId": 138 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.334384E-07, 0.8104883) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0233929, 0.03374812) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.004779152)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -22707,9 +22707,9 @@ "Item2": 0.004779152 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.334384E-07, 0.8104883) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0233929, 0.03374812) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.004779152)", - "Label": "Ã", + "Label": "Ë", "hasCustomLabel": false, - "LabelId": 143 + "LabelId": 139 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.020291E-07, 0.8106499) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.02025124, 0.02909426) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.004138645)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -22854,9 +22854,9 @@ "Item2": 0.004138645 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.020291E-07, 0.8106499) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.02025124, 0.02909426) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.004138645)", - "Label": "Ã", + "Label": "ÃŒ", "hasCustomLabel": false, - "LabelId": 144 + "LabelId": 140 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.750029E-07, 0.8107705) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.01754934, 0.02509158) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.003587792)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -23001,9 +23001,9 @@ "Item2": 0.0035877917 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.750029E-07, 0.8107705) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.01754934, 0.02509158) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.003587792)", - "Label": "Ñ", + "Label": "Ã", "hasCustomLabel": false, - "LabelId": 145 + "LabelId": 141 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.517663E-07, 0.8108608) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.01522568, 0.02164893) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.003114051)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -23148,9 +23148,9 @@ "Item2": 0.003114051 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.517663E-07, 0.8108608) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.01522568, 0.02164893) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.003114051)", - "Label": "Ã’", + "Label": "ÃŽ", "hasCustomLabel": false, - "LabelId": 146 + "LabelId": 142 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.317795E-07, 0.8109283) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.01322737, 0.01868795) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.002706637)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -23295,9 +23295,9 @@ "Item2": 0.00270663714 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.317795E-07, 0.8109283) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.01322737, 0.01868795) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.002706637)", - "Label": "Ó", + "Label": "Ã", "hasCustomLabel": false, - "LabelId": 147 + "LabelId": 143 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.145984E-07, 0.8109791) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.01150889, 0.01614122) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.002356275)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -23442,9 +23442,9 @@ "Item2": 0.00235627475 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.145984E-07, 0.8109791) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.01150889, 0.01614122) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.002356275)", - "Label": "Ô", + "Label": "Ã", "hasCustomLabel": false, - "LabelId": 148 + "LabelId": 144 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 9.982086E-08, 0.8110173) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.01003114, 0.01395076) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.002054987)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -23589,9 +23589,9 @@ "Item2": 0.00205498724 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 9.982086E-08, 0.8110173) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.01003114, 0.01395076) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.002054987)", - "Label": "Õ", + "Label": "Ñ", "hasCustomLabel": false, - "LabelId": 149 + "LabelId": 145 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.711405E-08, 0.8110461) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.008760455, 0.0120667) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001795915)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -23736,9 +23736,9 @@ "Item2": 0.00179591484 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.711405E-08, 0.8110461) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.008760455, 0.0120667) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001795915)", - "Label": "Ö", + "Label": "Ã’", "hasCustomLabel": false, - "LabelId": 150 + "LabelId": 146 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.618684E-08, 0.8110679) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007667916, 0.01044615) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001573159)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -23883,9 +23883,9 @@ "Item2": 0.00157315924 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.618684E-08, 0.8110679) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007667916, 0.01044615) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001573159)", - "Label": "×", + "Label": "Ó", "hasCustomLabel": false, - "LabelId": 151 + "LabelId": 147 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.679592E-08, 0.8110844) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006728643, 0.009052214) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001381649)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -24030,9 +24030,9 @@ "Item2": 0.00138164894 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.679592E-08, 0.8110844) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006728643, 0.009052214) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001381649)", - "Label": "Ø", + "Label": "Ô", "hasCustomLabel": false, - "LabelId": 152 + "LabelId": 148 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.872202E-08, 0.811097) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005921252, 0.007853162) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001217024)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -24177,9 +24177,9 @@ "Item2": 0.00121702394 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.872202E-08, 0.811097) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005921252, 0.007853162) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001217024)", - "Label": "Ù", + "Label": "Õ", "hasCustomLabel": false, - "LabelId": 153 + "LabelId": 149 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.178306E-08, 0.8111066) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005227356, 0.006821695) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001075536)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -24324,9 +24324,9 @@ "Item2": 0.00107553578 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.178306E-08, 0.8111066) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005227356, 0.006821695) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001075536)", - "Label": "Ú", + "Label": "Ö", "hasCustomLabel": false, - "LabelId": 154 + "LabelId": 150 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.582106E-08, 0.811114) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004631156, 0.005934337) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009539629)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -24471,9 +24471,9 @@ "Item2": 0.0009539629 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.582106E-08, 0.811114) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004631156, 0.005934337) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009539629)", - "Label": "Û", + "Label": "×", "hasCustomLabel": false, - "LabelId": 155 + "LabelId": 151 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.070063E-08, 0.8111197) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004119067, 0.005170891) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008495366)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -24618,9 +24618,9 @@ "Item2": 0.000849536562 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.070063E-08, 0.8111197) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004119067, 0.005170891) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008495366)", - "Label": "Ãœ", + "Label": "Ø", "hasCustomLabel": false, - "LabelId": 156 + "LabelId": 152 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.630378E-08, 0.8111242) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003679428, 0.004513982) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007598784)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -24765,9 +24765,9 @@ "Item2": 0.0007598784 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.630378E-08, 0.8111242) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003679428, 0.004513982) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007598784)", - "Label": "Ã", + "Label": "Ù", "hasCustomLabel": false, - "LabelId": 157 + "LabelId": 153 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.253185E-08, 0.8111277) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003302213, 0.003948665) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006829454)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -24912,9 +24912,9 @@ "Item2": 0.0006829454 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.253185E-08, 0.8111277) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003302213, 0.003948665) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006829454)", - "Label": "Þ", + "Label": "Ú", "hasCustomLabel": false, - "LabelId": 158 + "LabelId": 154 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.929792E-08, 0.8111305) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00297882, 0.003462082) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006169838)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -25059,9 +25059,9 @@ "Item2": 0.0006169838 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.929792E-08, 0.8111305) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00297882, 0.003462082) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006169838)", - "Label": "ß", + "Label": "Û", "hasCustomLabel": false, - "LabelId": 159 + "LabelId": 155 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.652802E-08, 0.8111327) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002701863, 0.003043171) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000560488)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -25206,9 +25206,9 @@ "Item2": 0.00056048797 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.652802E-08, 0.8111327) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002701863, 0.003043171) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000560488)", - "Label": "à ", + "Label": "Ãœ", "hasCustomLabel": false, - "LabelId": 160 + "LabelId": 156 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.415967E-08, 0.8111344) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002465006, 0.002682415) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005121666)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -25353,9 +25353,9 @@ "Item2": 0.000512166647 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.415967E-08, 0.8111344) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002465006, 0.002682415) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005121666)", - "Label": "á", + "Label": "Ã", "hasCustomLabel": false, - "LabelId": 161 + "LabelId": 157 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.213766E-08, 0.8111358) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002262817, 0.002371624) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004709127)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -25500,9 +25500,9 @@ "Item2": 0.0004709127 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.213766E-08, 0.8111358) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002262817, 0.002371624) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004709127)", - "Label": "â", + "Label": "Þ", "hasCustomLabel": false, - "LabelId": 162 + "LabelId": 158 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.041587E-08, 0.8111369) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002090637, 0.002103754) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000435777)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -25647,9 +25647,9 @@ "Item2": 0.000435777038 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.041587E-08, 0.8111369) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002090637, 0.002103754) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000435777)", - "Label": "ã", + "Label": "ß", "hasCustomLabel": false, - "LabelId": 163 + "LabelId": 159 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.895421E-08, 0.8111378) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001944477, 0.001872743) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004059467)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -25794,9 +25794,9 @@ "Item2": 0.000405946717 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.895421E-08, 0.8111378) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001944477, 0.001872743) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004059467)", - "Label": "ä", + "Label": "à ", "hasCustomLabel": false, - "LabelId": 164 + "LabelId": 160 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.771862E-08, 0.8111386) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001820918, 0.001673379) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003807253)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -25941,9 +25941,9 @@ "Item2": 0.00038072528 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.771862E-08, 0.8111386) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001820918, 0.001673379) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003807253)", - "Label": "Ã¥", + "Label": "á", "hasCustomLabel": false, - "LabelId": 165 + "LabelId": 161 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.667983E-08, 0.8111392) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001717033, 0.001501177) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003595165)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -26088,9 +26088,9 @@ "Item2": 0.0003595165 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.667983E-08, 0.8111392) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001717033, 0.001501177) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003595165)", - "Label": "æ", + "Label": "â", "hasCustomLabel": false, - "LabelId": 166 + "LabelId": 162 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.58127E-08, 0.8111398) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001630314, 0.001352282) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003418096)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -26235,9 +26235,9 @@ "Item2": 0.000341809617 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.58127E-08, 0.8111398) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001630314, 0.001352282) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003418096)", - "Label": "ç", + "Label": "ã", "hasCustomLabel": false, - "LabelId": 167 + "LabelId": 163 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.509563E-08, 0.8111402) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001558613, 0.001223379) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003271669)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -26382,9 +26382,9 @@ "Item2": 0.0003271669 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.509563E-08, 0.8111402) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001558613, 0.001223379) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003271669)", - "Label": "è", + "Label": "ä", "hasCustomLabel": false, - "LabelId": 168 + "LabelId": 164 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.451029E-08, 0.8111407) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001500085, 0.001111624) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003152128)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -26529,9 +26529,9 @@ "Item2": 0.000315212761 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.451029E-08, 0.8111407) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001500085, 0.001111624) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003152128)", - "Label": "é", + "Label": "Ã¥", "hasCustomLabel": false, - "LabelId": 169 + "LabelId": 165 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.404092E-08, 0.811141) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001453148, 0.001014572) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003056248)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -26676,9 +26676,9 @@ "Item2": 0.000305624766 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.404092E-08, 0.811141) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001453148, 0.001014572) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003056248)", - "Label": "ê", + "Label": "æ", "hasCustomLabel": false, - "LabelId": 170 + "LabelId": 166 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.367392E-08, 0.8111413) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00141644, 0.0009301305) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002981256)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -26823,9 +26823,9 @@ "Item2": 0.000298125582 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.367392E-08, 0.8111413) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00141644, 0.0009301305) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002981256)", - "Label": "ë", + "Label": "ç", "hasCustomLabel": false, - "LabelId": 171 + "LabelId": 167 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.339735E-08, 0.8111416) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001388788, 0.0008565031) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000292476)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -26970,9 +26970,9 @@ "Item2": 0.000292476 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.339735E-08, 0.8111416) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001388788, 0.0008565031) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000292476)", - "Label": "ì", + "Label": "è", "hasCustomLabel": false, - "LabelId": 172 + "LabelId": 168 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.320126E-08, 0.8111418) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001369179, 0.0007921541) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002884693)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -27117,9 +27117,9 @@ "Item2": 0.0002884693 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.320126E-08, 0.8111418) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001369179, 0.0007921541) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002884693)", - "Label": "Ã", + "Label": "é", "hasCustomLabel": false, - "LabelId": 173 + "LabelId": 169 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.307687E-08, 0.8111421) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001356734, 0.0007357697) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002859265)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -27264,9 +27264,9 @@ "Item2": 0.000285926479 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.307687E-08, 0.8111421) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001356734, 0.0007357697) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002859265)", - "Label": "î", + "Label": "ê", "hasCustomLabel": false, - "LabelId": 174 + "LabelId": 170 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.30164E-08, 0.8111423) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001350693, 0.0006862283) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002846919)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -27411,9 +27411,9 @@ "Item2": 0.0002846919 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.30164E-08, 0.8111423) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001350693, 0.0006862283) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002846919)", - "Label": "ï", + "Label": "ë", "hasCustomLabel": false, - "LabelId": 175 + "LabelId": 171 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.301342E-08, 0.8111425) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001350389, 0.000642572) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.00028463)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -27558,9 +27558,9 @@ "Item2": 0.000284629961 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.301342E-08, 0.8111425) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001350389, 0.000642572) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.00028463)", - "Label": "ð", + "Label": "ì", "hasCustomLabel": false, - "LabelId": 176 + "LabelId": 172 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.306193E-08, 0.8111427) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001355246, 0.0006039842) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002856223)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -27705,9 +27705,9 @@ "Item2": 0.000285622285 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.306193E-08, 0.8111427) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001355246, 0.0006039842) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002856223)", - "Label": "ñ", + "Label": "Ã", "hasCustomLabel": false, - "LabelId": 177 + "LabelId": 173 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.3157E-08, 0.8111429) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001364753, 0.0005697685) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000287565)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -27852,9 +27852,9 @@ "Item2": 0.000287564966 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.3157E-08, 0.8111429) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001364753, 0.0005697685) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000287565)", - "Label": "ò", + "Label": "î", "hasCustomLabel": false, - "LabelId": 178 + "LabelId": 174 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.329415E-08, 0.811143) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001378465, 0.0005393313) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002903669)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -27999,9 +27999,9 @@ "Item2": 0.00029036685 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.329415E-08, 0.811143) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001378465, 0.0005393313) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002903669)", - "Label": "ó", + "Label": "ï", "hasCustomLabel": false, - "LabelId": 179 + "LabelId": 175 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.346938E-08, 0.8111432) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001395991, 0.0005121662) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002939476)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -28146,9 +28146,9 @@ "Item2": 0.0002939476 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.346938E-08, 0.8111432) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001395991, 0.0005121662) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002939476)", - "Label": "ô", + "Label": "ð", "hasCustomLabel": false, - "LabelId": 180 + "LabelId": 176 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.367931E-08, 0.8111434) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001416981, 0.0004878413) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002982362)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -28293,9 +28293,9 @@ "Item2": 0.000298236235 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.367931E-08, 0.8111434) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001416981, 0.0004878413) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002982362)", - "Label": "õ", + "Label": "ñ", "hasCustomLabel": false, - "LabelId": 181 + "LabelId": 177 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.392084E-08, 0.8111435) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001441131, 0.0004659877) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.00030317)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -28440,9 +28440,9 @@ "Item2": 0.000303169974 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.392084E-08, 0.8111435) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001441131, 0.0004659877) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.00030317)", - "Label": "ö", + "Label": "ò", "hasCustomLabel": false, - "LabelId": 182 + "LabelId": 178 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.419115E-08, 0.8111436) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001468168, 0.0004462903) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000308693)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -28587,9 +28587,9 @@ "Item2": 0.000308693037 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.419115E-08, 0.8111436) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001468168, 0.0004462903) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000308693)", - "Label": "÷", + "Label": "ó", "hasCustomLabel": false, - "LabelId": 183 + "LabelId": 179 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.448797E-08, 0.8111438) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001497847, 0.000428479) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003147557)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -28734,9 +28734,9 @@ "Item2": 0.0003147557 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.448797E-08, 0.8111438) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001497847, 0.000428479) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003147557)", - "Label": "ø", + "Label": "ô", "hasCustomLabel": false, - "LabelId": 184 + "LabelId": 180 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.480899E-08, 0.8111439) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001529955, 0.0004123223) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003213138)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -28881,9 +28881,9 @@ "Item2": 0.000321313826 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.480899E-08, 0.8111439) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001529955, 0.0004123223) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003213138)", - "Label": "ù", + "Label": "õ", "hasCustomLabel": false, - "LabelId": 185 + "LabelId": 181 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.515247E-08, 0.811144) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001564297, 0.0003976213) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003283278)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -29028,9 +29028,9 @@ "Item2": 0.0003283278 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.515247E-08, 0.811144) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001564297, 0.0003976213) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003283278)", - "Label": "ú", + "Label": "ö", "hasCustomLabel": false, - "LabelId": 186 + "LabelId": 182 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.551645E-08, 0.8111441) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001600701, 0.0003842046) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003357622)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -29175,9 +29175,9 @@ "Item2": 0.0003357622 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.551645E-08, 0.8111441) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001600701, 0.0003842046) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003357622)", - "Label": "û", + "Label": "÷", "hasCustomLabel": false, - "LabelId": 187 + "LabelId": 183 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.589954E-08, 0.8111442) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001639009, 0.0003719244) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003435851)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -29322,9 +29322,9 @@ "Item2": 0.0003435851 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.589954E-08, 0.8111442) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001639009, 0.0003719244) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003435851)", - "Label": "ü", + "Label": "ø", "hasCustomLabel": false, - "LabelId": 188 + "LabelId": 184 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.630033E-08, 0.8111444) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001679083, 0.0003606528) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003517679)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -29469,9 +29469,9 @@ "Item2": 0.000351767929 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.630033E-08, 0.8111444) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001679083, 0.0003606528) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003517679)", - "Label": "ý", + "Label": "ù", "hasCustomLabel": false, - "LabelId": 189 + "LabelId": 185 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.671746E-08, 0.8111445) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001720796, 0.0003502789) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003602849)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -29616,9 +29616,9 @@ "Item2": 0.000360284874 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.671746E-08, 0.8111445) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001720796, 0.0003502789) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003602849)", - "Label": "þ", + "Label": "ú", "hasCustomLabel": false, - "LabelId": 190 + "LabelId": 186 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.71499E-08, 0.8111446) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001764034, 0.0003407062) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003691125)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -29763,9 +29763,9 @@ "Item2": 0.0003691125 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.71499E-08, 0.8111446) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001764034, 0.0003407062) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003691125)", - "Label": "ÿ", + "Label": "û", "hasCustomLabel": false, - "LabelId": 191 + "LabelId": 187 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.759643E-08, 0.8111447) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001808693, 0.0003318506) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003782297)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -29910,9 +29910,9 @@ "Item2": 0.000378229684 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.759643E-08, 0.8111447) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001808693, 0.0003318506) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003782297)", - "Label": "Ä€", + "Label": "ü", "hasCustomLabel": false, - "LabelId": 192 + "LabelId": 188 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.805629E-08, 0.8111448) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001854679, 0.0003236387) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003876172)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -30057,9 +30057,9 @@ "Item2": 0.000387617183 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.805629E-08, 0.8111448) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001854679, 0.0003236387) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003876172)", - "Label": "Ä", + "Label": "ý", "hasCustomLabel": false, - "LabelId": 193 + "LabelId": 189 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.852857E-08, 0.8111449) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001901907, 0.000316006) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003972576)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -30204,9 +30204,9 @@ "Item2": 0.000397257565 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.852857E-08, 0.8111449) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001901907, 0.000316006) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003972576)", - "Label": "Ä‚", + "Label": "þ", "hasCustomLabel": false, - "LabelId": 194 + "LabelId": 190 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.901248E-08, 0.8111451) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001950298, 0.0003088959) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004071349)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -30351,9 +30351,9 @@ "Item2": 0.000407134852 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.901248E-08, 0.8111451) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001950298, 0.0003088959) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004071349)", - "Label": "ă", + "Label": "ÿ", "hasCustomLabel": false, - "LabelId": 195 + "LabelId": 191 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.950731E-08, 0.8111452) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001999781, 0.0003022585) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004172344)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -30498,9 +30498,9 @@ "Item2": 0.000417234434 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.950731E-08, 0.8111452) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001999781, 0.0003022585) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004172344)", - "Label": "Ä„", + "Label": "Ä€", "hasCustomLabel": false, - "LabelId": 196 + "LabelId": 192 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.00124E-08, 0.8111453) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00205029, 0.0002960498) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000427543)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -30645,9 +30645,9 @@ "Item2": 0.000427542982 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.00124E-08, 0.8111453) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00205029, 0.0002960498) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000427543)", - "Label": "Ä…", + "Label": "Ä", "hasCustomLabel": false, - "LabelId": 197 + "LabelId": 193 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.052722E-08, 0.8111454) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002101766, 0.0002902308) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004380484)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -30792,9 +30792,9 @@ "Item2": 0.000438048359 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.052722E-08, 0.8111454) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002101766, 0.0002902308) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004380484)", - "Label": "Ć", + "Label": "Ä‚", "hasCustomLabel": false, - "LabelId": 198 + "LabelId": 194 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.105105E-08, 0.8111455) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002154155, 0.0002847669) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004487394)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -30939,9 +30939,9 @@ "Item2": 0.00044873936 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.105105E-08, 0.8111455) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002154155, 0.0002847669) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004487394)", - "Label": "ć", + "Label": "ă", "hasCustomLabel": false, - "LabelId": 199 + "LabelId": 195 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.158354E-08, 0.8111457) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002207404, 0.0002796271) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004596055)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -31086,9 +31086,9 @@ "Item2": 0.000459605537 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.158354E-08, 0.8111457) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002207404, 0.0002796271) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004596055)", - "Label": "Ĉ", + "Label": "Ä„", "hasCustomLabel": false, - "LabelId": 200 + "LabelId": 196 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.212418E-08, 0.8111458) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002261468, 0.000274784) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004706375)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -31233,9 +31233,9 @@ "Item2": 0.0004706375 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.212418E-08, 0.8111458) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002261468, 0.000274784) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004706375)", - "Label": "ĉ", + "Label": "Ä…", "hasCustomLabel": false, - "LabelId": 201 + "LabelId": 197 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.267253E-08, 0.8111459) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002316303, 0.0002702131) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004818264)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -31380,9 +31380,9 @@ "Item2": 0.00048182637 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.267253E-08, 0.8111459) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002316303, 0.0002702131) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004818264)", - "Label": "ÄŠ", + "Label": "Ć", "hasCustomLabel": false, - "LabelId": 202 + "LabelId": 198 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.322831E-08, 0.811146) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002371869, 0.0002658922) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004931641)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -31527,9 +31527,9 @@ "Item2": 0.0004931641 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.322831E-08, 0.811146) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002371869, 0.0002658922) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004931641)", - "Label": "Ä‹", + "Label": "ć", "hasCustomLabel": false, - "LabelId": 203 + "LabelId": 199 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.37908E-08, 0.8111461) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00242813, 0.0002618015) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005046431)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -31674,9 +31674,9 @@ "Item2": 0.000504643132 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.37908E-08, 0.8111461) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00242813, 0.0002618015) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005046431)", - "Label": "ÄŒ", + "Label": "Ĉ", "hasCustomLabel": false, - "LabelId": 204 + "LabelId": 200 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.43599E-08, 0.8111463) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002485052, 0.0002579232) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005162564)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -31821,9 +31821,9 @@ "Item2": 0.0005162564 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.43599E-08, 0.8111463) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002485052, 0.0002579232) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005162564)", - "Label": "Ä", + "Label": "ĉ", "hasCustomLabel": false, - "LabelId": 205 + "LabelId": 201 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.493551E-08, 0.8111464) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002542601, 0.0002542413) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005279974)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -31968,9 +31968,9 @@ "Item2": 0.000527997443 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.493551E-08, 0.8111464) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002542601, 0.0002542413) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005279974)", - "Label": "ÄŽ", + "Label": "ÄŠ", "hasCustomLabel": false, - "LabelId": 206 + "LabelId": 202 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.551699E-08, 0.8111465) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002600749, 0.0002507411) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005398603)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -32115,9 +32115,9 @@ "Item2": 0.000539860339 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.551699E-08, 0.8111465) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002600749, 0.0002507411) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005398603)", - "Label": "Ä", + "Label": "Ä‹", "hasCustomLabel": false, - "LabelId": 207 + "LabelId": 203 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.610406E-08, 0.8111466) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002659468, 0.0002474094) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005518393)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -32262,9 +32262,9 @@ "Item2": 0.0005518393 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.610406E-08, 0.8111466) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002659468, 0.0002474094) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005518393)", - "Label": "Ä", + "Label": "ÄŒ", "hasCustomLabel": false, - "LabelId": 208 + "LabelId": 204 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.669681E-08, 0.8111467) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002718731, 0.0002442343) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005639291)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -32409,9 +32409,9 @@ "Item2": 0.0005639291 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.669681E-08, 0.8111467) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002718731, 0.0002442343) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005639291)", - "Label": "Ä‘", + "Label": "Ä", "hasCustomLabel": false, - "LabelId": 209 + "LabelId": 205 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.729477E-08, 0.8111469) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002778516, 0.0002412049) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005761249)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -32556,9 +32556,9 @@ "Item2": 0.000576124934 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.729477E-08, 0.8111469) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002778516, 0.0002412049) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005761249)", - "Label": "Ä’", + "Label": "ÄŽ", "hasCustomLabel": false, - "LabelId": 210 + "LabelId": 206 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.789739E-08, 0.811147) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0028388, 0.0002383113) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005884222)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -32703,9 +32703,9 @@ "Item2": 0.0005884222 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.789739E-08, 0.811147) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0028388, 0.0002383113) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005884222)", - "Label": "Ä“", + "Label": "Ä", "hasCustomLabel": false, - "LabelId": 211 + "LabelId": 207 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.850522E-08, 0.8111471) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00289956, 0.0002355444) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006008164)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -32850,9 +32850,9 @@ "Item2": 0.000600816449 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.850522E-08, 0.8111471) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00289956, 0.0002355444) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006008164)", - "Label": "Ä”", + "Label": "Ä", "hasCustomLabel": false, - "LabelId": 212 + "LabelId": 208 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.911729E-08, 0.8111472) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002960779, 0.0002328959) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006133038)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -32997,9 +32997,9 @@ "Item2": 0.0006133038 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.911729E-08, 0.8111472) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002960779, 0.0002328959) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006133038)", - "Label": "Ä•", + "Label": "Ä‘", "hasCustomLabel": false, - "LabelId": 213 + "LabelId": 209 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.973374E-08, 0.8111473) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003022436, 0.0002303582) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006258803)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -33144,9 +33144,9 @@ "Item2": 0.0006258803 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.973374E-08, 0.8111473) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003022436, 0.0002303582) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006258803)", - "Label": "Ä–", + "Label": "Ä’", "hasCustomLabel": false, - "LabelId": 214 + "LabelId": 210 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.035464E-08, 0.8111475) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003084514, 0.0002279245) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006385426)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -33291,9 +33291,9 @@ "Item2": 0.0006385426 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.035464E-08, 0.8111475) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003084514, 0.0002279245) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006385426)", - "Label": "Ä—", + "Label": "Ä“", "hasCustomLabel": false, - "LabelId": 215 + "LabelId": 211 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.097946E-08, 0.8111476) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003146996, 0.0002255881) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000651287)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -33438,9 +33438,9 @@ "Item2": 0.000651287031 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.097946E-08, 0.8111476) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003146996, 0.0002255881) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000651287)", - "Label": "Ę", + "Label": "Ä”", "hasCustomLabel": false, - "LabelId": 216 + "LabelId": 212 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.16084E-08, 0.8111477) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003209868, 0.0002233434) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006641107)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -33585,9 +33585,9 @@ "Item2": 0.0006641107 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.16084E-08, 0.8111477) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003209868, 0.0002233434) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006641107)", - "Label": "Ä™", + "Label": "Ä•", "hasCustomLabel": false, - "LabelId": 217 + "LabelId": 213 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.224065E-08, 0.8111478) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003273115, 0.0002211848) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006770107)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -33732,9 +33732,9 @@ "Item2": 0.0006770107 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.224065E-08, 0.8111478) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003273115, 0.0002211848) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006770107)", - "Label": "Äš", + "Label": "Ä–", "hasCustomLabel": false, - "LabelId": 218 + "LabelId": 214 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.28765E-08, 0.811148) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003336722, 0.0002191074) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006899839)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -33879,9 +33879,9 @@ "Item2": 0.0006899839 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.28765E-08, 0.811148) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003336722, 0.0002191074) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006899839)", - "Label": "Ä›", + "Label": "Ä—", "hasCustomLabel": false, - "LabelId": 219 + "LabelId": 215 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.351627E-08, 0.8111482) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003400677, 0.0002171064) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007030278)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -34026,9 +34026,9 @@ "Item2": 0.0007030278 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.351627E-08, 0.8111482) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003400677, 0.0002171064) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007030278)", - "Label": "Äœ", + "Label": "Ę", "hasCustomLabel": false, - "LabelId": 220 + "LabelId": 216 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.415894E-08, 0.8111483) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003464967, 0.0002151776) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007161399)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -34173,9 +34173,9 @@ "Item2": 0.000716139853 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.415894E-08, 0.8111483) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003464967, 0.0002151776) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007161399)", - "Label": "Ä", + "Label": "Ä™", "hasCustomLabel": false, - "LabelId": 221 + "LabelId": 217 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.48053E-08, 0.8111485) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00352958, 0.0002133171) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007293177)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -34320,9 +34320,9 @@ "Item2": 0.0007293177 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.48053E-08, 0.8111485) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00352958, 0.0002133171) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007293177)", - "Label": "Äž", + "Label": "Äš", "hasCustomLabel": false, - "LabelId": 222 + "LabelId": 218 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.545456E-08, 0.8111487) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003594506, 0.0002115211) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007425591)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -34467,9 +34467,9 @@ "Item2": 0.000742559147 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.545456E-08, 0.8111487) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003594506, 0.0002115211) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007425591)", - "Label": "ÄŸ", + "Label": "Ä›", "hasCustomLabel": false, - "LabelId": 223 + "LabelId": 219 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.610684E-08, 0.8111489) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003659734, 0.0002097862) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007558619)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -34614,9 +34614,9 @@ "Item2": 0.0007558619 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.610684E-08, 0.8111489) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003659734, 0.0002097862) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007558619)", - "Label": "Ä ", + "Label": "Äœ", "hasCustomLabel": false, - "LabelId": 224 + "LabelId": 220 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.676226E-08, 0.8111491) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003725253, 0.0002081093) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007692242)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -34761,9 +34761,9 @@ "Item2": 0.0007692242 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.676226E-08, 0.8111491) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003725253, 0.0002081093) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007692242)", - "Label": "Ä¡", + "Label": "Ä", "hasCustomLabel": false, - "LabelId": 225 + "LabelId": 221 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.741983E-08, 0.8111492) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003791056, 0.0002064873) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007826439)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -34908,9 +34908,9 @@ "Item2": 0.000782643852 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.741983E-08, 0.8111492) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003791056, 0.0002064873) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007826439)", - "Label": "Ä¢", + "Label": "Äž", "hasCustomLabel": false, - "LabelId": 226 + "LabelId": 222 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.808081E-08, 0.8111494) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003857131, 0.0002049174) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007961191)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -35055,9 +35055,9 @@ "Item2": 0.0007961191 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.808081E-08, 0.8111494) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003857131, 0.0002049174) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007961191)", - "Label": "Ä£", + "Label": "ÄŸ", "hasCustomLabel": false, - "LabelId": 227 + "LabelId": 223 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.874399E-08, 0.8111496) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003923472, 0.0002033971) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008096482)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -35202,9 +35202,9 @@ "Item2": 0.000809648249 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.874399E-08, 0.8111496) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003923472, 0.0002033971) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008096482)", - "Label": "Ĥ", + "Label": "Ä ", "hasCustomLabel": false, - "LabelId": 228 + "LabelId": 224 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.941041E-08, 0.8111498) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003990068, 0.000201924) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008232295)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -35349,9 +35349,9 @@ "Item2": 0.0008232295 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.941041E-08, 0.8111498) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003990068, 0.000201924) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008232295)", - "Label": "Ä¥", + "Label": "Ä¡", "hasCustomLabel": false, - "LabelId": 229 + "LabelId": 225 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.007862E-08, 0.81115) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004056912, 0.0002004957) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008368612)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -35496,9 +35496,9 @@ "Item2": 0.0008368612 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.007862E-08, 0.81115) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004056912, 0.0002004957) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008368612)", - "Label": "Ħ", + "Label": "Ä¢", "hasCustomLabel": false, - "LabelId": 230 + "LabelId": 226 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.074971E-08, 0.8111501) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004123999, 0.0001991102) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008505422)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -35643,9 +35643,9 @@ "Item2": 0.000850542157 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.074971E-08, 0.8111501) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004123999, 0.0001991102) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008505422)", - "Label": "ħ", + "Label": "Ä£", "hasCustomLabel": false, - "LabelId": 231 + "LabelId": 227 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.142292E-08, 0.8111503) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004191319, 0.0001977655) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008642707)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -35790,9 +35790,9 @@ "Item2": 0.0008642707 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.142292E-08, 0.8111503) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004191319, 0.0001977655) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008642707)", - "Label": "Ĩ", + "Label": "Ĥ", "hasCustomLabel": false, - "LabelId": 232 + "LabelId": 228 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.209819E-08, 0.8111505) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004258869, 0.0001964597) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008780457)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -35937,9 +35937,9 @@ "Item2": 0.000878045743 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.209819E-08, 0.8111505) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004258869, 0.0001964597) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008780457)", - "Label": "Ä©", + "Label": "Ä¥", "hasCustomLabel": false, - "LabelId": 233 + "LabelId": 229 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.277588E-08, 0.8111507) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004326638, 0.000195191) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008918655)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -36084,9 +36084,9 @@ "Item2": 0.0008918655 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.277588E-08, 0.8111507) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004326638, 0.000195191) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008918655)", - "Label": "Ī", + "Label": "Ħ", "hasCustomLabel": false, - "LabelId": 234 + "LabelId": 230 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.345571E-08, 0.8111508) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004394621, 0.0001939578) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009057288)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -36231,9 +36231,9 @@ "Item2": 0.0009057288 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.345571E-08, 0.8111508) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004394621, 0.0001939578) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009057288)", - "Label": "Ä«", + "Label": "ħ", "hasCustomLabel": false, - "LabelId": 235 + "LabelId": 231 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.413718E-08, 0.811151) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004462813, 0.0001927586) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009196345)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -36378,9 +36378,9 @@ "Item2": 0.000919634535 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.413718E-08, 0.811151) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004462813, 0.0001927586) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009196345)", - "Label": "Ĭ", + "Label": "Ĩ", "hasCustomLabel": false, - "LabelId": 236 + "LabelId": 232 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.482203E-08, 0.8111512) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004531207, 0.0001915918) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009335818)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -36525,9 +36525,9 @@ "Item2": 0.0009335818 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.482203E-08, 0.8111512) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004531207, 0.0001915918) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009335818)", - "Label": "Ä", + "Label": "Ä©", "hasCustomLabel": false, - "LabelId": 237 + "LabelId": 233 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.550752E-08, 0.8111514) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004599802, 0.0001904562) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009475693)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -36672,9 +36672,9 @@ "Item2": 0.0009475693 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.550752E-08, 0.8111514) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004599802, 0.0001904562) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009475693)", - "Label": "Ä®", + "Label": "Ī", "hasCustomLabel": false, - "LabelId": 238 + "LabelId": 234 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.619537E-08, 0.8111516) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004668587, 0.0001893503) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009615958)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -36819,9 +36819,9 @@ "Item2": 0.0009615958 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.619537E-08, 0.8111516) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004668587, 0.0001893503) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009615958)", - "Label": "į", + "Label": "Ä«", "hasCustomLabel": false, - "LabelId": 239 + "LabelId": 235 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.688509E-08, 0.8111517) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004737559, 0.000188273) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009756604)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -36966,9 +36966,9 @@ "Item2": 0.0009756604 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.688509E-08, 0.8111517) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004737559, 0.000188273) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009756604)", - "Label": "Ä°", + "Label": "Ĭ", "hasCustomLabel": false, - "LabelId": 240 + "LabelId": 236 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.757619E-08, 0.8111519) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004806715, 0.0001872231) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009897621)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -37113,9 +37113,9 @@ "Item2": 0.0009897621 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.757619E-08, 0.8111519) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004806715, 0.0001872231) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009897621)", - "Label": "ı", + "Label": "Ä", "hasCustomLabel": false, - "LabelId": 241 + "LabelId": 237 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.826996E-08, 0.8111521) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004876046, 0.0001861995) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0010039)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -37260,9 +37260,9 @@ "Item2": 0.0010039 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.826996E-08, 0.8111521) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004876046, 0.0001861995) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0010039)", - "Label": "IJ", + "Label": "Ä®", "hasCustomLabel": false, - "LabelId": 242 + "LabelId": 238 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.896458E-08, 0.8111523) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004945554, 0.0001852013) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001018073)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -37407,9 +37407,9 @@ "Item2": 0.00101807329 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.896458E-08, 0.8111523) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004945554, 0.0001852013) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001018073)", - "Label": "ij", + "Label": "į", "hasCustomLabel": false, - "LabelId": 243 + "LabelId": 239 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.966179E-08, 0.8111525) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005015229, 0.0001842272) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001032281)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -37554,9 +37554,9 @@ "Item2": 0.001032281 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.966179E-08, 0.8111525) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005015229, 0.0001842272) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001032281)", - "Label": "Ä´", + "Label": "Ä°", "hasCustomLabel": false, - "LabelId": 244 + "LabelId": 240 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.036019E-08, 0.8111526) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005085069, 0.0001832766) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001046522)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -37701,9 +37701,9 @@ "Item2": 0.00104652217 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.036019E-08, 0.8111526) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005085069, 0.0001832766) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001046522)", - "Label": "ĵ", + "Label": "ı", "hasCustomLabel": false, - "LabelId": 245 + "LabelId": 241 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.105976E-08, 0.8111528) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005155072, 0.0001823483) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001060796)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -37848,9 +37848,9 @@ "Item2": 0.0010607962 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.105976E-08, 0.8111528) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005155072, 0.0001823483) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001060796)", - "Label": "Ķ", + "Label": "IJ", "hasCustomLabel": false, - "LabelId": 246 + "LabelId": 242 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.176225E-08, 0.811153) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005225229, 0.0001814417) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001075102)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -37995,9 +37995,9 @@ "Item2": 0.00107510213 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.176225E-08, 0.811153) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005225229, 0.0001814417) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001075102)", - "Label": "Ä·", + "Label": "ij", "hasCustomLabel": false, - "LabelId": 247 + "LabelId": 243 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.246446E-08, 0.8111532) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005295542, 0.0001805559) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001089439)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -38142,9 +38142,9 @@ "Item2": 0.00108943926 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.246446E-08, 0.8111532) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005295542, 0.0001805559) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001089439)", - "Label": "ĸ", + "Label": "Ä´", "hasCustomLabel": false, - "LabelId": 248 + "LabelId": 244 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.316955E-08, 0.8111534) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005366005, 0.0001796902) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001103807)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -38289,9 +38289,9 @@ "Item2": 0.00110380712 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.316955E-08, 0.8111534) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005366005, 0.0001796902) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001103807)", - "Label": "Ĺ", + "Label": "ĵ", "hasCustomLabel": false, - "LabelId": 249 + "LabelId": 245 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.387609E-08, 0.8111535) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005436614, 0.0001788438) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001118205)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -38436,9 +38436,9 @@ "Item2": 0.00111820491 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.387609E-08, 0.8111535) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005436614, 0.0001788438) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001118205)", - "Label": "ĺ", + "Label": "Ķ", "hasCustomLabel": false, - "LabelId": 250 + "LabelId": 246 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.458318E-08, 0.8111537) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005507368, 0.0001780161) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001132632)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -38583,9 +38583,9 @@ "Item2": 0.00113263191 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.458318E-08, 0.8111537) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005507368, 0.0001780161) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001132632)", - "Label": "Ä»", + "Label": "Ä·", "hasCustomLabel": false, - "LabelId": 251 + "LabelId": 247 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.529209E-08, 0.8111539) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005578259, 0.0001772063) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001147087)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -38730,9 +38730,9 @@ "Item2": 0.00114708708 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.529209E-08, 0.8111539) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005578259, 0.0001772063) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001147087)", - "Label": "ļ", + "Label": "ĸ", "hasCustomLabel": false, - "LabelId": 252 + "LabelId": 248 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.60024E-08, 0.8111541) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00564929, 0.0001764139) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.00116157)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -38877,9 +38877,9 @@ "Item2": 0.00116157043 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.60024E-08, 0.8111541) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00564929, 0.0001764139) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.00116157)", - "Label": "Ľ", + "Label": "Ĺ", "hasCustomLabel": false, - "LabelId": 253 + "LabelId": 249 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.671448E-08, 0.8111542) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005720453, 0.0001756383) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001176081)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -39024,9 +39024,9 @@ "Item2": 0.00117608078 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.671448E-08, 0.8111542) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005720453, 0.0001756383) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001176081)", - "Label": "ľ", + "Label": "ĺ", "hasCustomLabel": false, - "LabelId": 254 + "LabelId": 250 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.742698E-08, 0.8111544) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005791748, 0.0001748788) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001190618)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -39171,9 +39171,9 @@ "Item2": 0.001190618 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.742698E-08, 0.8111544) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005791748, 0.0001748788) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001190618)", - "Label": "Ä¿", + "Label": "Ä»", "hasCustomLabel": false, - "LabelId": 255 + "LabelId": 251 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.814076E-08, 0.8111546) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005863171, 0.0001741351) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001205181)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -39318,9 +39318,9 @@ "Item2": 0.00120518124 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.814076E-08, 0.8111546) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005863171, 0.0001741351) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001205181)", - "Label": "Å€", + "Label": "ļ", "hasCustomLabel": false, - "LabelId": 256 + "LabelId": 252 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.885625E-08, 0.8111548) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00593472, 0.0001734065) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.00121977)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -39465,9 +39465,9 @@ "Item2": 0.00121977017 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.885625E-08, 0.8111548) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00593472, 0.0001734065) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.00121977)", - "Label": "Å", + "Label": "Ľ", "hasCustomLabel": false, - "LabelId": 257 + "LabelId": 253 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.957342E-08, 0.8111551) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006006392, 0.0001726925) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001234384)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -39612,9 +39612,9 @@ "Item2": 0.00123438414 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.957342E-08, 0.8111551) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006006392, 0.0001726925) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001234384)", - "Label": "Å‚", + "Label": "ľ", "hasCustomLabel": false, - "LabelId": 258 + "LabelId": 254 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.029135E-08, 0.8111553) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006078185, 0.0001719927) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001249023)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -39759,9 +39759,9 @@ "Item2": 0.00124902267 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.029135E-08, 0.8111553) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006078185, 0.0001719927) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001249023)", - "Label": "Ń", + "Label": "Ä¿", "hasCustomLabel": false, - "LabelId": 259 + "LabelId": 255 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.101046E-08, 0.8111556) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006150096, 0.0001713067) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001263685)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -39906,9 +39906,9 @@ "Item2": 0.00126368529 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.101046E-08, 0.8111556) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006150096, 0.0001713067) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001263685)", - "Label": "Å„", + "Label": "Å€", "hasCustomLabel": false, - "LabelId": 260 + "LabelId": 256 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.173074E-08, 0.8111558) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006222124, 0.0001706339) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001278372)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -40053,9 +40053,9 @@ "Item2": 0.00127837167 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.173074E-08, 0.8111558) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006222124, 0.0001706339) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001278372)", - "Label": "Å…", + "Label": "Å", "hasCustomLabel": false, - "LabelId": 261 + "LabelId": 257 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.245215E-08, 0.811156) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006294266, 0.0001699741) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001293081)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -40200,9 +40200,9 @@ "Item2": 0.00129308121 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.245215E-08, 0.811156) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006294266, 0.0001699741) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001293081)", - "Label": "ņ", + "Label": "Å‚", "hasCustomLabel": false, - "LabelId": 262 + "LabelId": 258 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.317561E-08, 0.8111563) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00636652, 0.0001693267) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001307814)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -40347,9 +40347,9 @@ "Item2": 0.00130781368 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.317561E-08, 0.8111563) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00636652, 0.0001693267) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001307814)", - "Label": "Ň", + "Label": "Ń", "hasCustomLabel": false, - "LabelId": 263 + "LabelId": 259 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.389834E-08, 0.8111565) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006438884, 0.0001686915) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001322569)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -40494,9 +40494,9 @@ "Item2": 0.00132256851 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.389834E-08, 0.8111565) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006438884, 0.0001686915) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001322569)", - "Label": "ň", + "Label": "Å„", "hasCustomLabel": false, - "LabelId": 264 + "LabelId": 260 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.462306E-08, 0.8111567) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006511356, 0.000168068) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001337345)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -40641,9 +40641,9 @@ "Item2": 0.00133734522 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.462306E-08, 0.8111567) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006511356, 0.000168068) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001337345)", - "Label": "ʼn", + "Label": "Å…", "hasCustomLabel": false, - "LabelId": 265 + "LabelId": 261 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.534971E-08, 0.811157) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00658393, 0.0001674558) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001352143)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -40788,9 +40788,9 @@ "Item2": 0.001352143 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.534971E-08, 0.811157) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00658393, 0.0001674558) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001352143)", - "Label": "ÅŠ", + "Label": "ņ", "hasCustomLabel": false, - "LabelId": 266 + "LabelId": 262 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.607561E-08, 0.8111572) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006656611, 0.0001668547) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001366962)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -40935,9 +40935,9 @@ "Item2": 0.001366962 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.607561E-08, 0.8111572) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006656611, 0.0001668547) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001366962)", - "Label": "Å‹", + "Label": "Ň", "hasCustomLabel": false, - "LabelId": 267 + "LabelId": 263 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.68043E-08, 0.8111575) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00672939, 0.0001662643) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001381801)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -41082,9 +41082,9 @@ "Item2": 0.00138180132 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.68043E-08, 0.8111575) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00672939, 0.0001662643) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001381801)", - "Label": "ÅŒ", + "Label": "ň", "hasCustomLabel": false, - "LabelId": 268 + "LabelId": 264 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.753218E-08, 0.8111577) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006802268, 0.0001656843) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001396661)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -41229,9 +41229,9 @@ "Item2": 0.00139666081 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.753218E-08, 0.8111577) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006802268, 0.0001656843) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001396661)", - "Label": "Å", + "Label": "ʼn", "hasCustomLabel": false, - "LabelId": 269 + "LabelId": 265 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.826195E-08, 0.8111579) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006875245, 0.0001651144) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.00141154)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -41376,9 +41376,9 @@ "Item2": 0.00141154043 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.826195E-08, 0.8111579) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006875245, 0.0001651144) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.00141154)", - "Label": "ÅŽ", + "Label": "ÅŠ", "hasCustomLabel": false, - "LabelId": 270 + "LabelId": 266 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.899268E-08, 0.8111582) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006948318, 0.0001645544) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001426439)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -41523,9 +41523,9 @@ "Item2": 0.0014264395 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.899268E-08, 0.8111582) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006948318, 0.0001645544) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001426439)", - "Label": "Å", + "Label": "Å‹", "hasCustomLabel": false, - "LabelId": 271 + "LabelId": 267 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.972437E-08, 0.8111584) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007021488, 0.000164004) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001441358)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -41670,9 +41670,9 @@ "Item2": 0.00144135824 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.972437E-08, 0.8111584) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007021488, 0.000164004) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001441358)", - "Label": "Å", + "Label": "ÅŒ", "hasCustomLabel": false, - "LabelId": 272 + "LabelId": 268 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.045605E-08, 0.8111587) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007094746, 0.0001634628) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001456295)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -41817,9 +41817,9 @@ "Item2": 0.001456295 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.045605E-08, 0.8111587) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007094746, 0.0001634628) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001456295)", - "Label": "Å‘", + "Label": "Å", "hasCustomLabel": false, - "LabelId": 273 + "LabelId": 269 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.118957E-08, 0.8111589) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007168098, 0.0001629307) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001471251)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -41964,9 +41964,9 @@ "Item2": 0.0014712509 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.118957E-08, 0.8111589) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007168098, 0.0001629307) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001471251)", - "Label": "Å’", + "Label": "ÅŽ", "hasCustomLabel": false, - "LabelId": 274 + "LabelId": 270 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.192487E-08, 0.8111591) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007241537, 0.0001624074) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001486225)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -42111,9 +42111,9 @@ "Item2": 0.0014862247 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.192487E-08, 0.8111591) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007241537, 0.0001624074) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001486225)", - "Label": "Å“", + "Label": "Å", "hasCustomLabel": false, - "LabelId": 275 + "LabelId": 271 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.266016E-08, 0.8111594) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007315067, 0.0001618926) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001501217)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -42258,9 +42258,9 @@ "Item2": 0.00150121679 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.266016E-08, 0.8111594) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007315067, 0.0001618926) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001501217)", - "Label": "Å”", + "Label": "Å", "hasCustomLabel": false, - "LabelId": 276 + "LabelId": 272 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.339725E-08, 0.8111596) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007388685, 0.0001613862) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001516227)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -42405,9 +42405,9 @@ "Item2": 0.00151622691 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.339725E-08, 0.8111596) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007388685, 0.0001613862) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001516227)", - "Label": "Å•", + "Label": "Å‘", "hasCustomLabel": false, - "LabelId": 277 + "LabelId": 273 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.413337E-08, 0.8111598) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007462387, 0.0001608879) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001531254)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -42552,9 +42552,9 @@ "Item2": 0.001531254 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.413337E-08, 0.8111598) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007462387, 0.0001608879) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001531254)", - "Label": "Å–", + "Label": "Å’", "hasCustomLabel": false, - "LabelId": 278 + "LabelId": 274 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.487125E-08, 0.8111601) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007536175, 0.0001603975) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001546299)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -42699,9 +42699,9 @@ "Item2": 0.00154629862 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.487125E-08, 0.8111601) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007536175, 0.0001603975) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001546299)", - "Label": "Å—", + "Label": "Å“", "hasCustomLabel": false, - "LabelId": 279 + "LabelId": 275 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.560991E-08, 0.8111603) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007610042, 0.0001599148) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001561359)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -42846,9 +42846,9 @@ "Item2": 0.00156135939 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.560991E-08, 0.8111603) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007610042, 0.0001599148) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001561359)", - "Label": "Ř", + "Label": "Å”", "hasCustomLabel": false, - "LabelId": 280 + "LabelId": 276 }, "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.634941E-08, 0.8111606) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007683991, 0.0001594396) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001576437)": { "s_type": "FunctionFact<System.Single, UnityEngine.Vector3>", @@ -42993,12 +42993,12 @@ "Item2": 0.001576437 }, "Id": "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.634941E-08, 0.8111606) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007683991, 0.0001594396) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001576437)", - "Label": "Å™", + "Label": "Å•", "hasCustomLabel": false, - "LabelId": 281 + "LabelId": 277 }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1660{t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.71507, 18.63876) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.3575, -24.0345) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2859854), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 16.41822, 11.76509) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 18.17429, -15.64585) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1854527), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 19.61984, 8.863367) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -16.15633, -15.4558) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5734656), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.74145, 0.0001512584) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -21.45141, 15.22121) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2155912), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.888747, 3.281431) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.38822, -27.80841) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1180014), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.984262, 0.0002780475) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.2305991, 27.80475) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1191256), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.94236, 3.31239) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 23.42652, -14.6) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2268761), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 9.005012, 0.0001435129) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 20.87433, 14.37513) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.590435), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 19.61985, 8.487865) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -14.8994, 14.20093) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.691238), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.977393, 18.30397) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 23.09713, -11.65444) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3922241), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 15.28206, 13.7326) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.4603704, -22.11528) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.6209553), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 13.67658, 0.0002202752) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -5.608852, 22.02752) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2200489), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 12.20507, 4.847275) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 22.02752, -7.767531) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3665375), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 19.61982, 2.000106) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -18.31479, -7.718225) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2591408), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.54411, 7.497284E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -20.45319, 7.56881) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.456389), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.187777, 3.454145) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -5.839626, -25.07086) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1377753), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.290042, 0.0002493555) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -7.159229, 24.9594) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.09993961), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.525736, 2.494487) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 17.48746, -19.46407) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1281586), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.686502, 0.0001922491) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 16.05069, 19.24876) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4696551), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.14276, 9.040274) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -10.946, -19.53067) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4628757), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.025051, 0.0001932228) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -15.32156, 19.32228) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1378767), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.819405, 2.664044) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.37134, -24.0291) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1108674), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.687296, 0.0002391654) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.249614, 23.91654) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1568838), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.704151, 3.752287) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 23.28331, -6.928161) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5415995), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 15.87577, 6.724003E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 17.62621, 6.795529) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.226729), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 19.61985, 1.540878) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -15.30014, 6.750589) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4426361), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.8865, 4.528736) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.750587, -19.6424) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2305592), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 13.18222, 0.0001952448) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.472753, 19.57217) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.002434), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 12.7369, 19.6198) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -5.33831, -19.48888) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.7929868), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.419057, 4.16536) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -23.02034, -1.586958) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2246498), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.000250105, 3.808835) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 24.99714, -1.572675) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1788682), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.314614, 3.527739) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.09929, 20.58879) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.7816031), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 9.211795, 19.61979) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.427216, -20.55026) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.9547223), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.058162, 0.0002044376) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -6.902648, 20.44376) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2043911), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.442544, 4.178548) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 13.22719, -17.90403) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.233386), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.262522, 0.0001770008) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.84221, 17.74776) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4721227), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 12.28793, 8.379155) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -12.22817, -14.21008) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5896627), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.371777, 0.0001400589) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -17.75392, 14.00589) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1808783), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0001780728, 2.53363) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 17.78795, 12.75767) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.339301), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 15.02542, 19.61987) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.623549, -12.68671) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5710809), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 16.06627, 12.37468) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.29918, -5.410871) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3758278), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 19.61992, 10.34107) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -7.537445, -5.357656) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5498449), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 13.99255, 7.395328) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -1.80683, 13.73323) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.8901526), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.497512, 19.61986) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -10.42943, -13.59016) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2104124), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.085816, 16.76016) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -5.285142, -16.85733) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.698581), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0001051595, 4.983803) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.49216, -14.57131) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3420286), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.014989, 0.0001446568) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.085127, 14.46568) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2505379), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.482346, 3.624316) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.64452, -3.182668) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.138767), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.79832, 3.069148E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.42739, 3.140674) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.261231), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.31868, 3.961057) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.140674, -8.945286) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4428095), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.74761, 8.878566E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -1.200725, 8.92625) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3679302), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.64192, 3.284277) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.92625, -4.81012) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.682785), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.44996, 4.729227E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.212746, 4.776911) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.9691768), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.98726, 4.629645) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.776911, -7.294877) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.6346434), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 13.04329, 7.224429E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -1.444419, 7.272113) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5074097), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.04758, 3.689949) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.272113, -6.422107) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5745698), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 13.60665, 6.348934E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.629092, 6.396618) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.7429182), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 12.10979, 4.752171) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.396617, -5.658934) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.8397644), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.0224, 5.582916E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -1.83225, 5.630599) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.6312054), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.91168, 3.55404) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.630599, -8.024374) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4429057), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 12.44332, 7.9564E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.282444, 8.004084) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5421413), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.697, 4.339384) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.004084, -4.035961) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.07518), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.63257, 3.904473E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -2.520668, 3.99984) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.7227589), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.2485, 2.890863) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.99984, -9.610931) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3007891), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.00784, 9.546617E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.047284, 9.5943) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3548257), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.762, 3.404376) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 9.594299, -2.433555) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.398931), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.58459, 2.345659E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -4.060983, 2.393343) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.173249), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.068203, 2.807865) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -5.631238, -14.47211) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.194019), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.790921, 0.0001436155) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -7.477002, 14.36155) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2104654), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.190275E-05, 3.022877) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.196284, 12.33656) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.345361), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.148965, 19.61988) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -4.971041, -12.26093) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3268713), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.422212E-05, 15.61202) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.41034, -11.11049) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.40516), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.727924, 0.0001111375) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -6.321439, 11.01838) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.106372), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.326775E-05, 1.172253) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.329431, 9.469191) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.290414), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.318291E-05, 13.39154) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.31834, 10.94849) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5688878), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.575984, 19.61989) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.733199, -10.92106) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.9225922), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.242024E-05, 9.544113) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.289756, -9.387285) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.016706), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.324602, 9.331409E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -3.662205, 9.331409) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2665415), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.402976E-05, 2.487381) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.397064, 8.023324) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.100329), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.64054E-05, 11.31575) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.640589, 6.898616) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.9461036), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.206955E-05, 17.84262) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.207005, 6.253925) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2842029), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.799516, 19.61994) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.413935, -6.231718) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5728211), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.801053E-05, 16.05022) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.813024, -5.650228) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.7773848), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.303209E-05, 11.65777) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.279417, -4.859393) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.6685966), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.844296E-05, 8.408755) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.820503, -4.179256) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5750363), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.4377E-05, 6.005496) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.425828, -3.594323) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4945723), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.086349E-05, 4.227811) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.086398, -3.091268) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4253715), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.794431E-05, 2.912848) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.79448, -2.658629) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3658572), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.543375E-05, 1.940146) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.543425, -2.28655) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3146735), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.330442E-05, 1.220609) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.327511, -1.966554) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2706544), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.141771E-05, 0.688336) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.14182, -1.69135) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.232797), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 9.820731E-06, 0.2945802) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.9821221, -1.454668) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2002388), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.44729E-06, 0.003286785) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.8447781, -1.251116) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.002627082), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002202011, 1.239552E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.8114513, 1.239575) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1681041), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.204322E-06, 0.2084007) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.7204813, 1.066187) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1468971), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.197441E-06, 0.3650296) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.6197932, 0.9170609) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1263695), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.331456E-06, 0.480926) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.5331947, 0.7888028) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1087143), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.582926E-06, 0.5666869) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.4587142, 0.6784922) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0935297), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.946068E-06, 0.6301519) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.3946559, 0.5836178) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.08046991), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.391399E-06, 0.6771206) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.3395615, 0.5020194) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.06923762), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.921276E-06, 0.7118835) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.2921766, 0.4318393) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0595771), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.513734E-06, 0.737615) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.2514225, 0.3714797) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0512684), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.163221E-06, 0.7566634) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.2163712, 0.3195664) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.04412237), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.862688E-06, 0.7707661) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.1862247, 0.2749174) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.03797631), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.602478E-06, 0.7812089) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.1602968, 0.2365163) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.03269029), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.379015E-06, 0.7889427) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.1379971, 0.2034888) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.02814396), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.18792E-06, 0.7946714) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.1188178, 0.175083) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.02423381), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.022733E-06, 0.7989158) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.1023224, 0.150652) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.02087083), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.80862E-07, 0.8020613) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.08813525, 0.1296397) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.01797844), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.589597E-07, 0.8043932) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.07593338, 0.1115677) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0154908), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.537832E-07, 0.8061224) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.06543901, 0.09602457) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.01335127), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.63641E-07, 0.8074053) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.05641315, 0.08265641) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.01151113), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.85955E-07, 0.8083575) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.04865037, 0.07115889) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.009928506), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.192195E-07, 0.8090646) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.04197391, 0.06127021) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.008567349), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.617982E-07, 0.80959) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.03623178, 0.05276527) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.007396676), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.124417E-07, 0.8099808) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.03129322, 0.04545041) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.006389831), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.699823E-07, 0.8102716) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.02704583, 0.03915911) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.005523895), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.334384E-07, 0.8104883) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0233929, 0.03374812) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.004779152), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.020291E-07, 0.8106499) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.02025124, 0.02909426) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.004138645), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.750029E-07, 0.8107705) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.01754934, 0.02509158) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.003587792), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.517663E-07, 0.8108608) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.01522568, 0.02164893) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.003114051), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.317795E-07, 0.8109283) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.01322737, 0.01868795) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.002706637), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.145984E-07, 0.8109791) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.01150889, 0.01614122) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.002356275), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 9.982086E-08, 0.8110173) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.01003114, 0.01395076) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.002054987), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.711405E-08, 0.8110461) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.008760455, 0.0120667) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001795915), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.618684E-08, 0.8110679) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007667916, 0.01044615) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001573159), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.679592E-08, 0.8110844) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006728643, 0.009052214) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001381649), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.872202E-08, 0.811097) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005921252, 0.007853162) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001217024), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.178306E-08, 0.8111066) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005227356, 0.006821695) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001075536), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.582106E-08, 0.811114) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004631156, 0.005934337) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009539629), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.070063E-08, 0.8111197) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004119067, 0.005170891) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008495366), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.630378E-08, 0.8111242) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003679428, 0.004513982) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007598784), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.253185E-08, 0.8111277) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003302213, 0.003948665) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006829454), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.929792E-08, 0.8111305) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00297882, 0.003462082) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006169838), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.652802E-08, 0.8111327) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002701863, 0.003043171) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000560488), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.415967E-08, 0.8111344) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002465006, 0.002682415) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005121666), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.213766E-08, 0.8111358) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002262817, 0.002371624) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004709127), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.041587E-08, 0.8111369) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002090637, 0.002103754) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000435777), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.895421E-08, 0.8111378) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001944477, 0.001872743) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004059467), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.771862E-08, 0.8111386) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001820918, 0.001673379) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003807253), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.667983E-08, 0.8111392) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001717033, 0.001501177) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003595165), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.58127E-08, 0.8111398) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001630314, 0.001352282) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003418096), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.509563E-08, 0.8111402) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001558613, 0.001223379) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003271669), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.451029E-08, 0.8111407) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001500085, 0.001111624) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003152128), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.404092E-08, 0.811141) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001453148, 0.001014572) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003056248), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.367392E-08, 0.8111413) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00141644, 0.0009301305) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002981256), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.339735E-08, 0.8111416) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001388788, 0.0008565031) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000292476), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.320126E-08, 0.8111418) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001369179, 0.0007921541) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002884693), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.307687E-08, 0.8111421) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001356734, 0.0007357697) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002859265), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.30164E-08, 0.8111423) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001350693, 0.0006862283) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002846919), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.301342E-08, 0.8111425) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001350389, 0.000642572) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.00028463), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.306193E-08, 0.8111427) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001355246, 0.0006039842) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002856223), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.3157E-08, 0.8111429) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001364753, 0.0005697685) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000287565), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.329415E-08, 0.811143) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001378465, 0.0005393313) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002903669), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.346938E-08, 0.8111432) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001395991, 0.0005121662) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002939476), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.367931E-08, 0.8111434) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001416981, 0.0004878413) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002982362), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.392084E-08, 0.8111435) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001441131, 0.0004659877) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.00030317), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.419115E-08, 0.8111436) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001468168, 0.0004462903) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000308693), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.448797E-08, 0.8111438) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001497847, 0.000428479) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003147557), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.480899E-08, 0.8111439) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001529955, 0.0004123223) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003213138), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.515247E-08, 0.811144) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001564297, 0.0003976213) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003283278), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.551645E-08, 0.8111441) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001600701, 0.0003842046) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003357622), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.589954E-08, 0.8111442) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001639009, 0.0003719244) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003435851), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.630033E-08, 0.8111444) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001679083, 0.0003606528) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003517679), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.671746E-08, 0.8111445) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001720796, 0.0003502789) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003602849), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.71499E-08, 0.8111446) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001764034, 0.0003407062) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003691125), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.759643E-08, 0.8111447) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001808693, 0.0003318506) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003782297), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.805629E-08, 0.8111448) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001854679, 0.0003236387) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003876172), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.852857E-08, 0.8111449) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001901907, 0.000316006) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003972576), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.901248E-08, 0.8111451) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001950298, 0.0003088959) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004071349), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.950731E-08, 0.8111452) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001999781, 0.0003022585) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004172344), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.00124E-08, 0.8111453) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00205029, 0.0002960498) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000427543), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.052722E-08, 0.8111454) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002101766, 0.0002902308) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004380484), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.105105E-08, 0.8111455) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002154155, 0.0002847669) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004487394), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.158354E-08, 0.8111457) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002207404, 0.0002796271) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004596055), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.212418E-08, 0.8111458) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002261468, 0.000274784) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004706375), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.267253E-08, 0.8111459) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002316303, 0.0002702131) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004818264), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.322831E-08, 0.811146) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002371869, 0.0002658922) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004931641), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.37908E-08, 0.8111461) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00242813, 0.0002618015) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005046431), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.43599E-08, 0.8111463) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002485052, 0.0002579232) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005162564), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.493551E-08, 0.8111464) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002542601, 0.0002542413) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005279974), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.551699E-08, 0.8111465) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002600749, 0.0002507411) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005398603), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.610406E-08, 0.8111466) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002659468, 0.0002474094) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005518393), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.669681E-08, 0.8111467) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002718731, 0.0002442343) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005639291), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.729477E-08, 0.8111469) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002778516, 0.0002412049) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005761249), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.789739E-08, 0.811147) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0028388, 0.0002383113) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005884222), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.850522E-08, 0.8111471) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00289956, 0.0002355444) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006008164), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.911729E-08, 0.8111472) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002960779, 0.0002328959) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006133038), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.973374E-08, 0.8111473) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003022436, 0.0002303582) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006258803), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.035464E-08, 0.8111475) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003084514, 0.0002279245) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006385426), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.097946E-08, 0.8111476) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003146996, 0.0002255881) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000651287), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.16084E-08, 0.8111477) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003209868, 0.0002233434) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006641107), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.224065E-08, 0.8111478) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003273115, 0.0002211848) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006770107), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.28765E-08, 0.811148) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003336722, 0.0002191074) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006899839), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.351627E-08, 0.8111482) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003400677, 0.0002171064) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007030278), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.415894E-08, 0.8111483) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003464967, 0.0002151776) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007161399), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.48053E-08, 0.8111485) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00352958, 0.0002133171) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007293177), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.545456E-08, 0.8111487) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003594506, 0.0002115211) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007425591), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.610684E-08, 0.8111489) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003659734, 0.0002097862) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007558619), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.676226E-08, 0.8111491) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003725253, 0.0002081093) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007692242), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.741983E-08, 0.8111492) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003791056, 0.0002064873) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007826439), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.808081E-08, 0.8111494) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003857131, 0.0002049174) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007961191), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.874399E-08, 0.8111496) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003923472, 0.0002033971) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008096482), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.941041E-08, 0.8111498) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003990068, 0.000201924) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008232295), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.007862E-08, 0.81115) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004056912, 0.0002004957) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008368612), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.074971E-08, 0.8111501) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004123999, 0.0001991102) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008505422), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.142292E-08, 0.8111503) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004191319, 0.0001977655) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008642707), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.209819E-08, 0.8111505) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004258869, 0.0001964597) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008780457), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.277588E-08, 0.8111507) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004326638, 0.000195191) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008918655), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.345571E-08, 0.8111508) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004394621, 0.0001939578) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009057288), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.413718E-08, 0.811151) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004462813, 0.0001927586) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009196345), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.482203E-08, 0.8111512) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004531207, 0.0001915918) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009335818), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.550752E-08, 0.8111514) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004599802, 0.0001904562) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009475693), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.619537E-08, 0.8111516) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004668587, 0.0001893503) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009615958), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.688509E-08, 0.8111517) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004737559, 0.000188273) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009756604), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.757619E-08, 0.8111519) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004806715, 0.0001872231) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009897621), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.826996E-08, 0.8111521) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004876046, 0.0001861995) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0010039), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.896458E-08, 0.8111523) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004945554, 0.0001852013) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001018073), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.966179E-08, 0.8111525) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005015229, 0.0001842272) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001032281), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.036019E-08, 0.8111526) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005085069, 0.0001832766) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001046522), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.105976E-08, 0.8111528) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005155072, 0.0001823483) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001060796), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.176225E-08, 0.811153) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005225229, 0.0001814417) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001075102), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.246446E-08, 0.8111532) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005295542, 0.0001805559) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001089439), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.316955E-08, 0.8111534) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005366005, 0.0001796902) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001103807), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.387609E-08, 0.8111535) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005436614, 0.0001788438) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001118205), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.458318E-08, 0.8111537) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005507368, 0.0001780161) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001132632), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.529209E-08, 0.8111539) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005578259, 0.0001772063) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001147087), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.60024E-08, 0.8111541) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00564929, 0.0001764139) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.00116157), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.671448E-08, 0.8111542) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005720453, 0.0001756383) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001176081), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.742698E-08, 0.8111544) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005791748, 0.0001748788) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001190618), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.814076E-08, 0.8111546) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005863171, 0.0001741351) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001205181), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.885625E-08, 0.8111548) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00593472, 0.0001734065) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.00121977), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.957342E-08, 0.8111551) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006006392, 0.0001726925) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001234384), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.029135E-08, 0.8111553) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006078185, 0.0001719927) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001249023), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.101046E-08, 0.8111556) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006150096, 0.0001713067) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001263685), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.173074E-08, 0.8111558) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006222124, 0.0001706339) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001278372), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.245215E-08, 0.811156) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006294266, 0.0001699741) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001293081), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.317561E-08, 0.8111563) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00636652, 0.0001693267) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001307814), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.389834E-08, 0.8111565) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006438884, 0.0001686915) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001322569), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.462306E-08, 0.8111567) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006511356, 0.000168068) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001337345), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.534971E-08, 0.811157) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00658393, 0.0001674558) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001352143), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.607561E-08, 0.8111572) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006656611, 0.0001668547) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001366962), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.68043E-08, 0.8111575) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00672939, 0.0001662643) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001381801), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.753218E-08, 0.8111577) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006802268, 0.0001656843) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001396661), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.826195E-08, 0.8111579) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006875245, 0.0001651144) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.00141154), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.899268E-08, 0.8111582) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006948318, 0.0001645544) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001426439), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.972437E-08, 0.8111584) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007021488, 0.000164004) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001441358), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.045605E-08, 0.8111587) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007094746, 0.0001634628) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001456295), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.118957E-08, 0.8111589) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007168098, 0.0001629307) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001471251), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.192487E-08, 0.8111591) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007241537, 0.0001624074) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001486225), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.266016E-08, 0.8111594) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007315067, 0.0001618926) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001501217), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.339725E-08, 0.8111596) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007388685, 0.0001613862) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001516227), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.413337E-08, 0.8111598) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007462387, 0.0001608879) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001531254), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.487125E-08, 0.8111601) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007536175, 0.0001603975) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001546299), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.560991E-08, 0.8111603) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007610042, 0.0001599148) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001561359), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.634941E-08, 0.8111606) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007683991, 0.0001594396) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001576437)}": { - "fid": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1660", + "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1134{t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.71507, 18.63876) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.3575, -24.0345) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2859854), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 16.41822, 11.76509) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 18.17429, -15.64585) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1854527), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 19.61984, 8.863367) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -16.15633, -15.4558) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5734656), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.74145, 0.0001512584) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -21.45141, 15.22121) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2155912), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.888747, 3.281431) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.38822, -27.80841) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1180014), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.984262, 0.0002780475) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.2305991, 27.80475) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1191256), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.94236, 3.31239) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 23.42652, -14.6) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2268761), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 9.005012, 0.0001435129) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 20.87433, 14.37513) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.590435), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 19.61985, 8.487865) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -14.8994, 14.20093) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.691238), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.977393, 18.30397) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 23.09713, -11.65444) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3922241), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 15.28206, 13.7326) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.4603704, -22.11528) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.6209553), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 13.67658, 0.0002202752) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -5.608852, 22.02752) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2200489), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 12.20507, 4.847275) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 22.02752, -7.767531) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3665375), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 19.61982, 2.000106) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -18.31479, -7.718225) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2591408), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.54411, 7.497284E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -20.45319, 7.56881) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.456389), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.187777, 3.454145) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -5.839626, -25.07086) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1377753), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.290042, 0.0002493555) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -7.159229, 24.9594) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.09993961), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.525736, 2.494487) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 17.48746, -19.46407) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1281586), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.686502, 0.0001922491) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 16.05069, 19.24876) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4696551), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.14276, 9.040274) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -10.946, -19.53067) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4628757), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.025051, 0.0001932228) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -15.32156, 19.32228) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1378767), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.819405, 2.664044) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.37134, -24.0291) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1108674), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.687296, 0.0002391654) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.249614, 23.91654) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1568838), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.704151, 3.752287) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 23.28331, -6.928161) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5415995), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 15.87577, 6.724003E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 17.62621, 6.795529) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.226729), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 19.61985, 1.540878) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -15.30014, 6.750589) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4426361), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.8865, 4.528736) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.750587, -19.6424) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2305592), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 13.18222, 0.0001952448) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.472753, 19.57217) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.002434), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 12.7369, 19.6198) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -5.33831, -19.48888) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.7929868), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.419057, 4.16536) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -23.02034, -1.586958) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2246498), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.000250105, 3.808835) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 24.99714, -1.572675) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1788682), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.314614, 3.527739) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.09929, 20.58879) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.7816031), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 9.211795, 19.61979) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.427216, -20.55026) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.9547223), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.058162, 0.0002044376) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -6.902648, 20.44376) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2043911), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.442544, 4.178548) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 13.22719, -17.90403) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.233386), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.262522, 0.0001770008) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.84221, 17.74776) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4721227), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 12.28793, 8.379155) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -12.22817, -14.21008) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5896627), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.371777, 0.0001400589) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -17.75392, 14.00589) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1808783), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0001780728, 2.53363) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 17.78795, 12.75767) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.339301), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 15.02542, 19.61987) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.623549, -12.68671) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5710809), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 16.06627, 12.37468) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.29918, -5.410871) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3758278), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 19.61992, 10.34107) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -7.537445, -5.357656) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5498449), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 13.99255, 7.395328) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -1.80683, 13.73323) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.8901526), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.497512, 19.61986) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -10.42943, -13.59016) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2104124), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.085816, 16.76016) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -5.285142, -16.85733) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.698581), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0001051595, 4.983803) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.49216, -14.57131) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3420286), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.014989, 0.0001446568) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.085127, 14.46568) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2505379), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.482346, 3.624316) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.64452, -3.182668) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.138767), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.79832, 3.069148E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.42739, 3.140674) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.261231), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.31868, 3.961057) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.140674, -8.945286) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4428095), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.74761, 8.878566E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -1.200725, 8.92625) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3679302), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.64192, 3.284277) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.92625, -4.81012) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.682785), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.44996, 4.729227E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.212746, 4.776911) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.9691768), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.98726, 4.629645) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.776911, -7.294877) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.6346434), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 13.04329, 7.224429E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -1.444419, 7.272113) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5074097), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.04758, 3.689949) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.272113, -6.422107) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5745698), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 13.60665, 6.348934E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.629092, 6.396618) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.7429182), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 12.10979, 4.752171) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.396617, -5.658934) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.8397644), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.0224, 5.582916E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -1.83225, 5.630599) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.6312054), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.91168, 3.55404) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.630599, -8.024374) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4429057), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 12.44332, 7.9564E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.282444, 8.004084) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5421413), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.697, 4.339384) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.004084, -4.035961) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.07518), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.63257, 3.904473E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -2.520668, 3.99984) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.7227589), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.2485, 2.890863) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.99984, -9.610931) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3007891), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.00784, 9.546617E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.047284, 9.5943) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3548257), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.762, 3.404376) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 9.594299, -2.433555) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.398931), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.58459, 2.345659E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -4.060983, 2.393343) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.173249), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.068203, 2.807865) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -5.631238, -14.47211) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.194019), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.790921, 0.0001436155) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -7.477002, 14.36155) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2104654), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.190275E-05, 3.022877) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.196284, 12.33656) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.345361), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.148965, 19.61988) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -4.971041, -12.26093) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3268713), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.422212E-05, 15.61202) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.41034, -11.11049) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.40516), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.727924, 0.0001111375) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -6.321439, 11.01838) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.106372), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.326775E-05, 1.172253) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.329431, 9.469191) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.290414), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.318291E-05, 13.39154) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.31834, 10.94849) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5688878), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.575984, 19.61989) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.733199, -10.92106) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.9225922), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.242024E-05, 9.544113) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.289756, -9.387285) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.016706), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.324602, 9.331409E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -3.662205, 9.331409) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2665415), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.402976E-05, 2.487381) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.397064, 8.023324) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.100329), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.64054E-05, 11.31575) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.640589, 6.898616) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.9461036), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.206955E-05, 17.84262) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.207005, 6.253925) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2842029), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.799516, 19.61994) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.413935, -6.231718) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5728211), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.801053E-05, 16.05022) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.813024, -5.650228) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.7773848), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.303209E-05, 11.65777) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.279417, -4.859393) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.6685966), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.844296E-05, 8.408755) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.820503, -4.179256) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5750363), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.4377E-05, 6.005496) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.425828, -3.594323) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4945723), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.086349E-05, 4.227811) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.086398, -3.091268) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4253715), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.794431E-05, 2.912848) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.79448, -2.658629) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3658572), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.543375E-05, 1.940146) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.543425, -2.28655) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3146735), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.330442E-05, 1.220609) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.327511, -1.966554) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2706544), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.141771E-05, 0.688336) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.14182, -1.69135) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.232797), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 9.820731E-06, 0.2945802) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.9821221, -1.454668) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2002388), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.44729E-06, 0.003286785) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.8447781, -1.251116) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.002627082), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002202011, 1.239552E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.8114513, 1.239575) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1681041), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.204322E-06, 0.2084007) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.7204813, 1.066187) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1468971), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.197441E-06, 0.3650296) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.6197932, 0.9170609) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1263695), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.331456E-06, 0.480926) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.5331947, 0.7888028) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1087143), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.582926E-06, 0.5666869) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.4587142, 0.6784922) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0935297), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.946068E-06, 0.6301519) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.3946559, 0.5836178) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.08046991), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.391399E-06, 0.6771206) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.3395615, 0.5020194) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.06923762), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.921276E-06, 0.7118835) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.2921766, 0.4318393) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0595771), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.513734E-06, 0.737615) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.2514225, 0.3714797) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0512684), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.163221E-06, 0.7566634) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.2163712, 0.3195664) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.04412237), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.862688E-06, 0.7707661) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.1862247, 0.2749174) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.03797631), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.602478E-06, 0.7812089) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.1602968, 0.2365163) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.03269029), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.379015E-06, 0.7889427) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.1379971, 0.2034888) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.02814396), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.18792E-06, 0.7946714) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.1188178, 0.175083) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.02423381), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.022733E-06, 0.7989158) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.1023224, 0.150652) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.02087083), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.80862E-07, 0.8020613) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.08813525, 0.1296397) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.01797844), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.589597E-07, 0.8043932) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.07593338, 0.1115677) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0154908), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.537832E-07, 0.8061224) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.06543901, 0.09602457) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.01335127), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.63641E-07, 0.8074053) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.05641315, 0.08265641) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.01151113), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.85955E-07, 0.8083575) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.04865037, 0.07115889) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.009928506), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.192195E-07, 0.8090646) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.04197391, 0.06127021) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.008567349), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.617982E-07, 0.80959) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.03623178, 0.05276527) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.007396676), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.124417E-07, 0.8099808) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.03129322, 0.04545041) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.006389831), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.699823E-07, 0.8102716) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.02704583, 0.03915911) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.005523895), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.334384E-07, 0.8104883) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0233929, 0.03374812) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.004779152), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.020291E-07, 0.8106499) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.02025124, 0.02909426) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.004138645), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.750029E-07, 0.8107705) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.01754934, 0.02509158) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.003587792), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.517663E-07, 0.8108608) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.01522568, 0.02164893) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.003114051), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.317795E-07, 0.8109283) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.01322737, 0.01868795) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.002706637), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.145984E-07, 0.8109791) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.01150889, 0.01614122) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.002356275), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 9.982086E-08, 0.8110173) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.01003114, 0.01395076) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.002054987), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.711405E-08, 0.8110461) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.008760455, 0.0120667) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001795915), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.618684E-08, 0.8110679) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007667916, 0.01044615) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001573159), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.679592E-08, 0.8110844) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006728643, 0.009052214) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001381649), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.872202E-08, 0.811097) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005921252, 0.007853162) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001217024), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.178306E-08, 0.8111066) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005227356, 0.006821695) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001075536), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.582106E-08, 0.811114) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004631156, 0.005934337) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009539629), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.070063E-08, 0.8111197) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004119067, 0.005170891) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008495366), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.630378E-08, 0.8111242) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003679428, 0.004513982) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007598784), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.253185E-08, 0.8111277) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003302213, 0.003948665) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006829454), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.929792E-08, 0.8111305) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00297882, 0.003462082) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006169838), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.652802E-08, 0.8111327) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002701863, 0.003043171) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000560488), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.415967E-08, 0.8111344) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002465006, 0.002682415) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005121666), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.213766E-08, 0.8111358) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002262817, 0.002371624) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004709127), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.041587E-08, 0.8111369) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002090637, 0.002103754) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000435777), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.895421E-08, 0.8111378) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001944477, 0.001872743) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004059467), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.771862E-08, 0.8111386) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001820918, 0.001673379) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003807253), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.667983E-08, 0.8111392) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001717033, 0.001501177) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003595165), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.58127E-08, 0.8111398) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001630314, 0.001352282) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003418096), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.509563E-08, 0.8111402) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001558613, 0.001223379) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003271669), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.451029E-08, 0.8111407) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001500085, 0.001111624) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003152128), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.404092E-08, 0.811141) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001453148, 0.001014572) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003056248), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.367392E-08, 0.8111413) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00141644, 0.0009301305) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002981256), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.339735E-08, 0.8111416) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001388788, 0.0008565031) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000292476), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.320126E-08, 0.8111418) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001369179, 0.0007921541) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002884693), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.307687E-08, 0.8111421) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001356734, 0.0007357697) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002859265), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.30164E-08, 0.8111423) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001350693, 0.0006862283) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002846919), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.301342E-08, 0.8111425) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001350389, 0.000642572) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.00028463), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.306193E-08, 0.8111427) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001355246, 0.0006039842) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002856223), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.3157E-08, 0.8111429) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001364753, 0.0005697685) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000287565), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.329415E-08, 0.811143) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001378465, 0.0005393313) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002903669), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.346938E-08, 0.8111432) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001395991, 0.0005121662) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002939476), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.367931E-08, 0.8111434) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001416981, 0.0004878413) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002982362), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.392084E-08, 0.8111435) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001441131, 0.0004659877) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.00030317), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.419115E-08, 0.8111436) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001468168, 0.0004462903) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000308693), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.448797E-08, 0.8111438) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001497847, 0.000428479) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003147557), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.480899E-08, 0.8111439) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001529955, 0.0004123223) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003213138), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.515247E-08, 0.811144) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001564297, 0.0003976213) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003283278), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.551645E-08, 0.8111441) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001600701, 0.0003842046) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003357622), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.589954E-08, 0.8111442) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001639009, 0.0003719244) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003435851), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.630033E-08, 0.8111444) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001679083, 0.0003606528) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003517679), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.671746E-08, 0.8111445) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001720796, 0.0003502789) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003602849), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.71499E-08, 0.8111446) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001764034, 0.0003407062) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003691125), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.759643E-08, 0.8111447) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001808693, 0.0003318506) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003782297), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.805629E-08, 0.8111448) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001854679, 0.0003236387) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003876172), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.852857E-08, 0.8111449) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001901907, 0.000316006) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003972576), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.901248E-08, 0.8111451) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001950298, 0.0003088959) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004071349), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.950731E-08, 0.8111452) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001999781, 0.0003022585) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004172344), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.00124E-08, 0.8111453) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00205029, 0.0002960498) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000427543), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.052722E-08, 0.8111454) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002101766, 0.0002902308) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004380484), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.105105E-08, 0.8111455) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002154155, 0.0002847669) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004487394), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.158354E-08, 0.8111457) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002207404, 0.0002796271) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004596055), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.212418E-08, 0.8111458) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002261468, 0.000274784) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004706375), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.267253E-08, 0.8111459) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002316303, 0.0002702131) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004818264), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.322831E-08, 0.811146) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002371869, 0.0002658922) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004931641), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.37908E-08, 0.8111461) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00242813, 0.0002618015) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005046431), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.43599E-08, 0.8111463) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002485052, 0.0002579232) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005162564), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.493551E-08, 0.8111464) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002542601, 0.0002542413) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005279974), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.551699E-08, 0.8111465) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002600749, 0.0002507411) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005398603), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.610406E-08, 0.8111466) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002659468, 0.0002474094) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005518393), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.669681E-08, 0.8111467) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002718731, 0.0002442343) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005639291), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.729477E-08, 0.8111469) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002778516, 0.0002412049) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005761249), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.789739E-08, 0.811147) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0028388, 0.0002383113) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005884222), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.850522E-08, 0.8111471) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00289956, 0.0002355444) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006008164), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.911729E-08, 0.8111472) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002960779, 0.0002328959) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006133038), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.973374E-08, 0.8111473) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003022436, 0.0002303582) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006258803), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.035464E-08, 0.8111475) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003084514, 0.0002279245) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006385426), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.097946E-08, 0.8111476) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003146996, 0.0002255881) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000651287), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.16084E-08, 0.8111477) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003209868, 0.0002233434) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006641107), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.224065E-08, 0.8111478) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003273115, 0.0002211848) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006770107), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.28765E-08, 0.811148) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003336722, 0.0002191074) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006899839), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.351627E-08, 0.8111482) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003400677, 0.0002171064) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007030278), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.415894E-08, 0.8111483) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003464967, 0.0002151776) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007161399), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.48053E-08, 0.8111485) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00352958, 0.0002133171) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007293177), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.545456E-08, 0.8111487) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003594506, 0.0002115211) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007425591), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.610684E-08, 0.8111489) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003659734, 0.0002097862) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007558619), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.676226E-08, 0.8111491) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003725253, 0.0002081093) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007692242), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.741983E-08, 0.8111492) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003791056, 0.0002064873) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007826439), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.808081E-08, 0.8111494) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003857131, 0.0002049174) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007961191), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.874399E-08, 0.8111496) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003923472, 0.0002033971) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008096482), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.941041E-08, 0.8111498) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003990068, 0.000201924) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008232295), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.007862E-08, 0.81115) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004056912, 0.0002004957) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008368612), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.074971E-08, 0.8111501) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004123999, 0.0001991102) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008505422), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.142292E-08, 0.8111503) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004191319, 0.0001977655) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008642707), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.209819E-08, 0.8111505) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004258869, 0.0001964597) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008780457), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.277588E-08, 0.8111507) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004326638, 0.000195191) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008918655), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.345571E-08, 0.8111508) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004394621, 0.0001939578) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009057288), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.413718E-08, 0.811151) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004462813, 0.0001927586) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009196345), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.482203E-08, 0.8111512) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004531207, 0.0001915918) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009335818), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.550752E-08, 0.8111514) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004599802, 0.0001904562) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009475693), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.619537E-08, 0.8111516) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004668587, 0.0001893503) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009615958), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.688509E-08, 0.8111517) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004737559, 0.000188273) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009756604), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.757619E-08, 0.8111519) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004806715, 0.0001872231) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009897621), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.826996E-08, 0.8111521) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004876046, 0.0001861995) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0010039), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.896458E-08, 0.8111523) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004945554, 0.0001852013) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001018073), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.966179E-08, 0.8111525) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005015229, 0.0001842272) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001032281), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.036019E-08, 0.8111526) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005085069, 0.0001832766) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001046522), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.105976E-08, 0.8111528) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005155072, 0.0001823483) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001060796), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.176225E-08, 0.811153) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005225229, 0.0001814417) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001075102), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.246446E-08, 0.8111532) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005295542, 0.0001805559) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001089439), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.316955E-08, 0.8111534) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005366005, 0.0001796902) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001103807), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.387609E-08, 0.8111535) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005436614, 0.0001788438) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001118205), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.458318E-08, 0.8111537) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005507368, 0.0001780161) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001132632), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.529209E-08, 0.8111539) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005578259, 0.0001772063) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001147087), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.60024E-08, 0.8111541) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00564929, 0.0001764139) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.00116157), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.671448E-08, 0.8111542) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005720453, 0.0001756383) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001176081), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.742698E-08, 0.8111544) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005791748, 0.0001748788) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001190618), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.814076E-08, 0.8111546) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005863171, 0.0001741351) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001205181), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.885625E-08, 0.8111548) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00593472, 0.0001734065) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.00121977), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.957342E-08, 0.8111551) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006006392, 0.0001726925) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001234384), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.029135E-08, 0.8111553) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006078185, 0.0001719927) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001249023), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.101046E-08, 0.8111556) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006150096, 0.0001713067) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001263685), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.173074E-08, 0.8111558) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006222124, 0.0001706339) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001278372), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.245215E-08, 0.811156) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006294266, 0.0001699741) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001293081), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.317561E-08, 0.8111563) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00636652, 0.0001693267) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001307814), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.389834E-08, 0.8111565) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006438884, 0.0001686915) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001322569), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.462306E-08, 0.8111567) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006511356, 0.000168068) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001337345), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.534971E-08, 0.811157) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00658393, 0.0001674558) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001352143), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.607561E-08, 0.8111572) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006656611, 0.0001668547) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001366962), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.68043E-08, 0.8111575) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00672939, 0.0001662643) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001381801), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.753218E-08, 0.8111577) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006802268, 0.0001656843) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001396661), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.826195E-08, 0.8111579) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006875245, 0.0001651144) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.00141154), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.899268E-08, 0.8111582) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006948318, 0.0001645544) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001426439), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.972437E-08, 0.8111584) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007021488, 0.000164004) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001441358), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.045605E-08, 0.8111587) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007094746, 0.0001634628) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001456295), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.118957E-08, 0.8111589) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007168098, 0.0001629307) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001471251), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.192487E-08, 0.8111591) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007241537, 0.0001624074) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001486225), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.266016E-08, 0.8111594) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007315067, 0.0001618926) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001501217), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.339725E-08, 0.8111596) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007388685, 0.0001613862) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001516227), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.413337E-08, 0.8111598) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007462387, 0.0001608879) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001531254), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.487125E-08, 0.8111601) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007536175, 0.0001603975) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001546299), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.560991E-08, 0.8111603) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007610042, 0.0001599148) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001561359), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.634941E-08, 0.8111606) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007683991, 0.0001594396) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001576437)}": { + "fid": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1134", "funcids": [ "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.71507, 18.63876) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.3575, -24.0345) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2859854)", "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 16.41822, 11.76509) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 18.17429, -15.64585) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1854527)", @@ -43258,10 +43258,10 @@ "t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.634941E-08, 0.8111606) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007683991, 0.0001594396) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001576437)" ], "s_type": "AttachedPositionFunction", - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1660{t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.71507, 18.63876) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.3575, -24.0345) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2859854), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 16.41822, 11.76509) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 18.17429, -15.64585) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1854527), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 19.61984, 8.863367) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -16.15633, -15.4558) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5734656), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.74145, 0.0001512584) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -21.45141, 15.22121) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2155912), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.888747, 3.281431) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.38822, -27.80841) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1180014), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.984262, 0.0002780475) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.2305991, 27.80475) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1191256), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.94236, 3.31239) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 23.42652, -14.6) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2268761), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 9.005012, 0.0001435129) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 20.87433, 14.37513) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.590435), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 19.61985, 8.487865) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -14.8994, 14.20093) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.691238), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.977393, 18.30397) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 23.09713, -11.65444) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3922241), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 15.28206, 13.7326) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.4603704, -22.11528) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.6209553), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 13.67658, 0.0002202752) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -5.608852, 22.02752) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2200489), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 12.20507, 4.847275) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 22.02752, -7.767531) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3665375), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 19.61982, 2.000106) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -18.31479, -7.718225) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2591408), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.54411, 7.497284E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -20.45319, 7.56881) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.456389), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.187777, 3.454145) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -5.839626, -25.07086) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1377753), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.290042, 0.0002493555) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -7.159229, 24.9594) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.09993961), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.525736, 2.494487) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 17.48746, -19.46407) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1281586), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.686502, 0.0001922491) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 16.05069, 19.24876) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4696551), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.14276, 9.040274) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -10.946, -19.53067) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4628757), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.025051, 0.0001932228) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -15.32156, 19.32228) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1378767), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.819405, 2.664044) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.37134, -24.0291) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1108674), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.687296, 0.0002391654) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.249614, 23.91654) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1568838), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.704151, 3.752287) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 23.28331, -6.928161) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5415995), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 15.87577, 6.724003E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 17.62621, 6.795529) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.226729), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 19.61985, 1.540878) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -15.30014, 6.750589) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4426361), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.8865, 4.528736) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.750587, -19.6424) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2305592), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 13.18222, 0.0001952448) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.472753, 19.57217) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.002434), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 12.7369, 19.6198) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -5.33831, -19.48888) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.7929868), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.419057, 4.16536) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -23.02034, -1.586958) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2246498), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.000250105, 3.808835) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 24.99714, -1.572675) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1788682), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.314614, 3.527739) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.09929, 20.58879) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.7816031), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 9.211795, 19.61979) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.427216, -20.55026) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.9547223), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.058162, 0.0002044376) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -6.902648, 20.44376) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2043911), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.442544, 4.178548) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 13.22719, -17.90403) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.233386), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.262522, 0.0001770008) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.84221, 17.74776) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4721227), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 12.28793, 8.379155) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -12.22817, -14.21008) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5896627), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.371777, 0.0001400589) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -17.75392, 14.00589) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1808783), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0001780728, 2.53363) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 17.78795, 12.75767) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.339301), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 15.02542, 19.61987) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.623549, -12.68671) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5710809), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 16.06627, 12.37468) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.29918, -5.410871) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3758278), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 19.61992, 10.34107) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -7.537445, -5.357656) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5498449), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 13.99255, 7.395328) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -1.80683, 13.73323) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.8901526), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.497512, 19.61986) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -10.42943, -13.59016) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2104124), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.085816, 16.76016) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -5.285142, -16.85733) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.698581), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0001051595, 4.983803) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.49216, -14.57131) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3420286), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.014989, 0.0001446568) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.085127, 14.46568) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2505379), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.482346, 3.624316) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.64452, -3.182668) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.138767), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.79832, 3.069148E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.42739, 3.140674) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.261231), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.31868, 3.961057) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.140674, -8.945286) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4428095), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.74761, 8.878566E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -1.200725, 8.92625) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3679302), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.64192, 3.284277) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.92625, -4.81012) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.682785), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.44996, 4.729227E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.212746, 4.776911) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.9691768), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.98726, 4.629645) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.776911, -7.294877) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.6346434), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 13.04329, 7.224429E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -1.444419, 7.272113) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5074097), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.04758, 3.689949) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.272113, -6.422107) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5745698), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 13.60665, 6.348934E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.629092, 6.396618) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.7429182), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 12.10979, 4.752171) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.396617, -5.658934) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.8397644), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.0224, 5.582916E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -1.83225, 5.630599) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.6312054), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.91168, 3.55404) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.630599, -8.024374) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4429057), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 12.44332, 7.9564E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.282444, 8.004084) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5421413), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.697, 4.339384) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.004084, -4.035961) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.07518), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.63257, 3.904473E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -2.520668, 3.99984) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.7227589), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.2485, 2.890863) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.99984, -9.610931) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3007891), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.00784, 9.546617E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.047284, 9.5943) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3548257), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.762, 3.404376) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 9.594299, -2.433555) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.398931), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.58459, 2.345659E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -4.060983, 2.393343) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.173249), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.068203, 2.807865) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -5.631238, -14.47211) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.194019), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.790921, 0.0001436155) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -7.477002, 14.36155) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2104654), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.190275E-05, 3.022877) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.196284, 12.33656) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.345361), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.148965, 19.61988) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -4.971041, -12.26093) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3268713), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.422212E-05, 15.61202) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.41034, -11.11049) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.40516), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.727924, 0.0001111375) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -6.321439, 11.01838) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.106372), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.326775E-05, 1.172253) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.329431, 9.469191) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.290414), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.318291E-05, 13.39154) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.31834, 10.94849) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5688878), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.575984, 19.61989) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.733199, -10.92106) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.9225922), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.242024E-05, 9.544113) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.289756, -9.387285) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.016706), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.324602, 9.331409E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -3.662205, 9.331409) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2665415), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.402976E-05, 2.487381) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.397064, 8.023324) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.100329), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.64054E-05, 11.31575) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.640589, 6.898616) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.9461036), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.206955E-05, 17.84262) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.207005, 6.253925) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2842029), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.799516, 19.61994) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.413935, -6.231718) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5728211), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.801053E-05, 16.05022) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.813024, -5.650228) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.7773848), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.303209E-05, 11.65777) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.279417, -4.859393) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.6685966), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.844296E-05, 8.408755) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.820503, -4.179256) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5750363), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.4377E-05, 6.005496) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.425828, -3.594323) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4945723), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.086349E-05, 4.227811) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.086398, -3.091268) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4253715), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.794431E-05, 2.912848) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.79448, -2.658629) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3658572), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.543375E-05, 1.940146) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.543425, -2.28655) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3146735), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.330442E-05, 1.220609) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.327511, -1.966554) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2706544), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.141771E-05, 0.688336) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.14182, -1.69135) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.232797), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 9.820731E-06, 0.2945802) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.9821221, -1.454668) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2002388), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.44729E-06, 0.003286785) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.8447781, -1.251116) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.002627082), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002202011, 1.239552E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.8114513, 1.239575) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1681041), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.204322E-06, 0.2084007) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.7204813, 1.066187) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1468971), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.197441E-06, 0.3650296) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.6197932, 0.9170609) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1263695), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.331456E-06, 0.480926) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.5331947, 0.7888028) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1087143), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.582926E-06, 0.5666869) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.4587142, 0.6784922) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0935297), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.946068E-06, 0.6301519) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.3946559, 0.5836178) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.08046991), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.391399E-06, 0.6771206) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.3395615, 0.5020194) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.06923762), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.921276E-06, 0.7118835) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.2921766, 0.4318393) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0595771), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.513734E-06, 0.737615) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.2514225, 0.3714797) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0512684), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.163221E-06, 0.7566634) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.2163712, 0.3195664) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.04412237), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.862688E-06, 0.7707661) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.1862247, 0.2749174) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.03797631), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.602478E-06, 0.7812089) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.1602968, 0.2365163) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.03269029), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.379015E-06, 0.7889427) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.1379971, 0.2034888) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.02814396), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.18792E-06, 0.7946714) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.1188178, 0.175083) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.02423381), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.022733E-06, 0.7989158) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.1023224, 0.150652) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.02087083), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.80862E-07, 0.8020613) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.08813525, 0.1296397) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.01797844), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.589597E-07, 0.8043932) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.07593338, 0.1115677) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0154908), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.537832E-07, 0.8061224) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.06543901, 0.09602457) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.01335127), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.63641E-07, 0.8074053) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.05641315, 0.08265641) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.01151113), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.85955E-07, 0.8083575) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.04865037, 0.07115889) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.009928506), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.192195E-07, 0.8090646) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.04197391, 0.06127021) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.008567349), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.617982E-07, 0.80959) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.03623178, 0.05276527) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.007396676), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.124417E-07, 0.8099808) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.03129322, 0.04545041) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.006389831), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.699823E-07, 0.8102716) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.02704583, 0.03915911) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.005523895), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.334384E-07, 0.8104883) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0233929, 0.03374812) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.004779152), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.020291E-07, 0.8106499) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.02025124, 0.02909426) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.004138645), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.750029E-07, 0.8107705) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.01754934, 0.02509158) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.003587792), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.517663E-07, 0.8108608) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.01522568, 0.02164893) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.003114051), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.317795E-07, 0.8109283) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.01322737, 0.01868795) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.002706637), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.145984E-07, 0.8109791) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.01150889, 0.01614122) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.002356275), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 9.982086E-08, 0.8110173) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.01003114, 0.01395076) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.002054987), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.711405E-08, 0.8110461) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.008760455, 0.0120667) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001795915), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.618684E-08, 0.8110679) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007667916, 0.01044615) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001573159), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.679592E-08, 0.8110844) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006728643, 0.009052214) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001381649), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.872202E-08, 0.811097) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005921252, 0.007853162) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001217024), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.178306E-08, 0.8111066) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005227356, 0.006821695) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001075536), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.582106E-08, 0.811114) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004631156, 0.005934337) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009539629), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.070063E-08, 0.8111197) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004119067, 0.005170891) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008495366), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.630378E-08, 0.8111242) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003679428, 0.004513982) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007598784), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.253185E-08, 0.8111277) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003302213, 0.003948665) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006829454), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.929792E-08, 0.8111305) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00297882, 0.003462082) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006169838), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.652802E-08, 0.8111327) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002701863, 0.003043171) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000560488), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.415967E-08, 0.8111344) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002465006, 0.002682415) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005121666), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.213766E-08, 0.8111358) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002262817, 0.002371624) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004709127), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.041587E-08, 0.8111369) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002090637, 0.002103754) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000435777), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.895421E-08, 0.8111378) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001944477, 0.001872743) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004059467), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.771862E-08, 0.8111386) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001820918, 0.001673379) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003807253), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.667983E-08, 0.8111392) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001717033, 0.001501177) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003595165), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.58127E-08, 0.8111398) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001630314, 0.001352282) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003418096), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.509563E-08, 0.8111402) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001558613, 0.001223379) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003271669), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.451029E-08, 0.8111407) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001500085, 0.001111624) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003152128), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.404092E-08, 0.811141) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001453148, 0.001014572) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003056248), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.367392E-08, 0.8111413) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00141644, 0.0009301305) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002981256), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.339735E-08, 0.8111416) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001388788, 0.0008565031) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000292476), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.320126E-08, 0.8111418) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001369179, 0.0007921541) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002884693), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.307687E-08, 0.8111421) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001356734, 0.0007357697) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002859265), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.30164E-08, 0.8111423) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001350693, 0.0006862283) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002846919), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.301342E-08, 0.8111425) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001350389, 0.000642572) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.00028463), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.306193E-08, 0.8111427) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001355246, 0.0006039842) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002856223), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.3157E-08, 0.8111429) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001364753, 0.0005697685) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000287565), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.329415E-08, 0.811143) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001378465, 0.0005393313) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002903669), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.346938E-08, 0.8111432) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001395991, 0.0005121662) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002939476), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.367931E-08, 0.8111434) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001416981, 0.0004878413) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002982362), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.392084E-08, 0.8111435) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001441131, 0.0004659877) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.00030317), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.419115E-08, 0.8111436) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001468168, 0.0004462903) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000308693), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.448797E-08, 0.8111438) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001497847, 0.000428479) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003147557), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.480899E-08, 0.8111439) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001529955, 0.0004123223) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003213138), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.515247E-08, 0.811144) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001564297, 0.0003976213) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003283278), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.551645E-08, 0.8111441) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001600701, 0.0003842046) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003357622), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.589954E-08, 0.8111442) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001639009, 0.0003719244) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003435851), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.630033E-08, 0.8111444) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001679083, 0.0003606528) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003517679), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.671746E-08, 0.8111445) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001720796, 0.0003502789) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003602849), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.71499E-08, 0.8111446) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001764034, 0.0003407062) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003691125), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.759643E-08, 0.8111447) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001808693, 0.0003318506) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003782297), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.805629E-08, 0.8111448) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001854679, 0.0003236387) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003876172), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.852857E-08, 0.8111449) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001901907, 0.000316006) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003972576), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.901248E-08, 0.8111451) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001950298, 0.0003088959) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004071349), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.950731E-08, 0.8111452) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001999781, 0.0003022585) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004172344), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.00124E-08, 0.8111453) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00205029, 0.0002960498) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000427543), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.052722E-08, 0.8111454) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002101766, 0.0002902308) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004380484), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.105105E-08, 0.8111455) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002154155, 0.0002847669) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004487394), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.158354E-08, 0.8111457) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002207404, 0.0002796271) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004596055), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.212418E-08, 0.8111458) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002261468, 0.000274784) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004706375), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.267253E-08, 0.8111459) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002316303, 0.0002702131) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004818264), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.322831E-08, 0.811146) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002371869, 0.0002658922) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004931641), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.37908E-08, 0.8111461) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00242813, 0.0002618015) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005046431), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.43599E-08, 0.8111463) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002485052, 0.0002579232) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005162564), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.493551E-08, 0.8111464) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002542601, 0.0002542413) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005279974), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.551699E-08, 0.8111465) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002600749, 0.0002507411) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005398603), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.610406E-08, 0.8111466) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002659468, 0.0002474094) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005518393), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.669681E-08, 0.8111467) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002718731, 0.0002442343) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005639291), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.729477E-08, 0.8111469) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002778516, 0.0002412049) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005761249), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.789739E-08, 0.811147) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0028388, 0.0002383113) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005884222), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.850522E-08, 0.8111471) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00289956, 0.0002355444) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006008164), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.911729E-08, 0.8111472) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002960779, 0.0002328959) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006133038), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.973374E-08, 0.8111473) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003022436, 0.0002303582) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006258803), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.035464E-08, 0.8111475) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003084514, 0.0002279245) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006385426), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.097946E-08, 0.8111476) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003146996, 0.0002255881) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000651287), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.16084E-08, 0.8111477) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003209868, 0.0002233434) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006641107), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.224065E-08, 0.8111478) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003273115, 0.0002211848) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006770107), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.28765E-08, 0.811148) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003336722, 0.0002191074) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006899839), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.351627E-08, 0.8111482) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003400677, 0.0002171064) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007030278), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.415894E-08, 0.8111483) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003464967, 0.0002151776) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007161399), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.48053E-08, 0.8111485) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00352958, 0.0002133171) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007293177), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.545456E-08, 0.8111487) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003594506, 0.0002115211) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007425591), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.610684E-08, 0.8111489) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003659734, 0.0002097862) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007558619), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.676226E-08, 0.8111491) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003725253, 0.0002081093) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007692242), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.741983E-08, 0.8111492) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003791056, 0.0002064873) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007826439), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.808081E-08, 0.8111494) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003857131, 0.0002049174) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007961191), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.874399E-08, 0.8111496) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003923472, 0.0002033971) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008096482), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.941041E-08, 0.8111498) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003990068, 0.000201924) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008232295), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.007862E-08, 0.81115) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004056912, 0.0002004957) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008368612), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.074971E-08, 0.8111501) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004123999, 0.0001991102) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008505422), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.142292E-08, 0.8111503) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004191319, 0.0001977655) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008642707), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.209819E-08, 0.8111505) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004258869, 0.0001964597) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008780457), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.277588E-08, 0.8111507) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004326638, 0.000195191) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008918655), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.345571E-08, 0.8111508) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004394621, 0.0001939578) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009057288), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.413718E-08, 0.811151) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004462813, 0.0001927586) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009196345), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.482203E-08, 0.8111512) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004531207, 0.0001915918) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009335818), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.550752E-08, 0.8111514) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004599802, 0.0001904562) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009475693), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.619537E-08, 0.8111516) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004668587, 0.0001893503) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009615958), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.688509E-08, 0.8111517) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004737559, 0.000188273) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009756604), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.757619E-08, 0.8111519) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004806715, 0.0001872231) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009897621), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.826996E-08, 0.8111521) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004876046, 0.0001861995) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0010039), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.896458E-08, 0.8111523) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004945554, 0.0001852013) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001018073), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.966179E-08, 0.8111525) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005015229, 0.0001842272) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001032281), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.036019E-08, 0.8111526) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005085069, 0.0001832766) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001046522), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.105976E-08, 0.8111528) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005155072, 0.0001823483) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001060796), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.176225E-08, 0.811153) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005225229, 0.0001814417) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001075102), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.246446E-08, 0.8111532) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005295542, 0.0001805559) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001089439), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.316955E-08, 0.8111534) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005366005, 0.0001796902) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001103807), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.387609E-08, 0.8111535) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005436614, 0.0001788438) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001118205), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.458318E-08, 0.8111537) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005507368, 0.0001780161) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001132632), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.529209E-08, 0.8111539) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005578259, 0.0001772063) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001147087), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.60024E-08, 0.8111541) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00564929, 0.0001764139) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.00116157), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.671448E-08, 0.8111542) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005720453, 0.0001756383) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001176081), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.742698E-08, 0.8111544) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005791748, 0.0001748788) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001190618), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.814076E-08, 0.8111546) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005863171, 0.0001741351) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001205181), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.885625E-08, 0.8111548) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00593472, 0.0001734065) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.00121977), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.957342E-08, 0.8111551) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006006392, 0.0001726925) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001234384), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.029135E-08, 0.8111553) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006078185, 0.0001719927) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001249023), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.101046E-08, 0.8111556) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006150096, 0.0001713067) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001263685), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.173074E-08, 0.8111558) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006222124, 0.0001706339) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001278372), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.245215E-08, 0.811156) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006294266, 0.0001699741) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001293081), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.317561E-08, 0.8111563) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00636652, 0.0001693267) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001307814), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.389834E-08, 0.8111565) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006438884, 0.0001686915) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001322569), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.462306E-08, 0.8111567) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006511356, 0.000168068) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001337345), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.534971E-08, 0.811157) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00658393, 0.0001674558) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001352143), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.607561E-08, 0.8111572) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006656611, 0.0001668547) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001366962), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.68043E-08, 0.8111575) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00672939, 0.0001662643) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001381801), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.753218E-08, 0.8111577) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006802268, 0.0001656843) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001396661), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.826195E-08, 0.8111579) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006875245, 0.0001651144) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.00141154), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.899268E-08, 0.8111582) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006948318, 0.0001645544) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001426439), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.972437E-08, 0.8111584) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007021488, 0.000164004) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001441358), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.045605E-08, 0.8111587) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007094746, 0.0001634628) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001456295), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.118957E-08, 0.8111589) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007168098, 0.0001629307) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001471251), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.192487E-08, 0.8111591) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007241537, 0.0001624074) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001486225), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.266016E-08, 0.8111594) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007315067, 0.0001618926) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001501217), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.339725E-08, 0.8111596) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007388685, 0.0001613862) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001516227), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.413337E-08, 0.8111598) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007462387, 0.0001608879) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001531254), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.487125E-08, 0.8111601) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007536175, 0.0001603975) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001546299), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.560991E-08, 0.8111603) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007610042, 0.0001599148) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001561359), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.634941E-08, 0.8111606) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007683991, 0.0001594396) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001576437)}", - "Label": "Åš", + "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1134{t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.71507, 18.63876) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.3575, -24.0345) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2859854), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 16.41822, 11.76509) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 18.17429, -15.64585) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1854527), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 19.61984, 8.863367) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -16.15633, -15.4558) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5734656), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.74145, 0.0001512584) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -21.45141, 15.22121) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2155912), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.888747, 3.281431) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.38822, -27.80841) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1180014), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.984262, 0.0002780475) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.2305991, 27.80475) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1191256), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.94236, 3.31239) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 23.42652, -14.6) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2268761), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 9.005012, 0.0001435129) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 20.87433, 14.37513) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.590435), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 19.61985, 8.487865) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -14.8994, 14.20093) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.691238), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.977393, 18.30397) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 23.09713, -11.65444) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3922241), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 15.28206, 13.7326) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.4603704, -22.11528) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.6209553), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 13.67658, 0.0002202752) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -5.608852, 22.02752) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2200489), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 12.20507, 4.847275) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 22.02752, -7.767531) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3665375), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 19.61982, 2.000106) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -18.31479, -7.718225) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2591408), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.54411, 7.497284E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -20.45319, 7.56881) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.456389), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.187777, 3.454145) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -5.839626, -25.07086) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1377753), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.290042, 0.0002493555) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -7.159229, 24.9594) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.09993961), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.525736, 2.494487) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 17.48746, -19.46407) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1281586), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.686502, 0.0001922491) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 16.05069, 19.24876) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4696551), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.14276, 9.040274) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -10.946, -19.53067) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4628757), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.025051, 0.0001932228) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -15.32156, 19.32228) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1378767), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.819405, 2.664044) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.37134, -24.0291) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1108674), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.687296, 0.0002391654) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.249614, 23.91654) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1568838), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.704151, 3.752287) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 23.28331, -6.928161) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5415995), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 15.87577, 6.724003E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 17.62621, 6.795529) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.226729), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 19.61985, 1.540878) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -15.30014, 6.750589) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4426361), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.8865, 4.528736) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.750587, -19.6424) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2305592), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 13.18222, 0.0001952448) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.472753, 19.57217) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.002434), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 12.7369, 19.6198) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -5.33831, -19.48888) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.7929868), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.419057, 4.16536) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -23.02034, -1.586958) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2246498), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.000250105, 3.808835) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 24.99714, -1.572675) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1788682), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.314614, 3.527739) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.09929, 20.58879) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.7816031), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 9.211795, 19.61979) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.427216, -20.55026) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.9547223), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.058162, 0.0002044376) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -6.902648, 20.44376) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2043911), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.442544, 4.178548) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 13.22719, -17.90403) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.233386), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.262522, 0.0001770008) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.84221, 17.74776) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4721227), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 12.28793, 8.379155) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -12.22817, -14.21008) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5896627), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.371777, 0.0001400589) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -17.75392, 14.00589) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1808783), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0001780728, 2.53363) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 17.78795, 12.75767) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.339301), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 15.02542, 19.61987) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.623549, -12.68671) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5710809), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 16.06627, 12.37468) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.29918, -5.410871) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3758278), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 19.61992, 10.34107) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -7.537445, -5.357656) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5498449), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 13.99255, 7.395328) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -1.80683, 13.73323) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.8901526), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.497512, 19.61986) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -10.42943, -13.59016) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2104124), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.085816, 16.76016) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -5.285142, -16.85733) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.698581), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0001051595, 4.983803) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.49216, -14.57131) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3420286), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.014989, 0.0001446568) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.085127, 14.46568) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2505379), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.482346, 3.624316) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.64452, -3.182668) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.138767), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.79832, 3.069148E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.42739, 3.140674) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.261231), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.31868, 3.961057) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.140674, -8.945286) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4428095), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.74761, 8.878566E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -1.200725, 8.92625) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3679302), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.64192, 3.284277) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.92625, -4.81012) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.682785), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.44996, 4.729227E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.212746, 4.776911) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.9691768), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.98726, 4.629645) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.776911, -7.294877) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.6346434), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 13.04329, 7.224429E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -1.444419, 7.272113) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5074097), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.04758, 3.689949) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.272113, -6.422107) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5745698), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 13.60665, 6.348934E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.629092, 6.396618) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.7429182), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 12.10979, 4.752171) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.396617, -5.658934) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.8397644), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.0224, 5.582916E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -1.83225, 5.630599) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.6312054), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.91168, 3.55404) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.630599, -8.024374) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4429057), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 12.44332, 7.9564E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.282444, 8.004084) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5421413), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.697, 4.339384) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.004084, -4.035961) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.07518), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.63257, 3.904473E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -2.520668, 3.99984) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.7227589), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.2485, 2.890863) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.99984, -9.610931) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3007891), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 11.00784, 9.546617E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.047284, 9.5943) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3548257), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 10.762, 3.404376) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 9.594299, -2.433555) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.398931), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 14.58459, 2.345659E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -4.060983, 2.393343) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.173249), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.068203, 2.807865) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -5.631238, -14.47211) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.194019), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.790921, 0.0001436155) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -7.477002, 14.36155) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2104654), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.190275E-05, 3.022877) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.196284, 12.33656) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.345361), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.148965, 19.61988) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -4.971041, -12.26093) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3268713), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.422212E-05, 15.61202) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.41034, -11.11049) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.40516), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.727924, 0.0001111375) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -6.321439, 11.01838) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.106372), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.326775E-05, 1.172253) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.329431, 9.469191) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.290414), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.318291E-05, 13.39154) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.31834, 10.94849) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5688878), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.575984, 19.61989) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.733199, -10.92106) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.9225922), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.242024E-05, 9.544113) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.289756, -9.387285) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.016706), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.324602, 9.331409E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, -3.662205, 9.331409) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2665415), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.402976E-05, 2.487381) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.397064, 8.023324) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 1.100329), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.64054E-05, 11.31575) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.640589, 6.898616) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.9461036), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.206955E-05, 17.84262) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.207005, 6.253925) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2842029), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.799516, 19.61994) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.413935, -6.231718) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5728211), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.801053E-05, 16.05022) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.813024, -5.650228) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.7773848), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.303209E-05, 11.65777) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.279417, -4.859393) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.6685966), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.844296E-05, 8.408755) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.820503, -4.179256) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.5750363), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.4377E-05, 6.005496) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.425828, -3.594323) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4945723), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.086349E-05, 4.227811) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.086398, -3.091268) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.4253715), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.794431E-05, 2.912848) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.79448, -2.658629) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3658572), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.543375E-05, 1.940146) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.543425, -2.28655) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.3146735), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.330442E-05, 1.220609) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.327511, -1.966554) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2706544), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.141771E-05, 0.688336) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.14182, -1.69135) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.232797), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 9.820731E-06, 0.2945802) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.9821221, -1.454668) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.2002388), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.44729E-06, 0.003286785) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.8447781, -1.251116) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.002627082), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002202011, 1.239552E-05) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.8114513, 1.239575) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1681041), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.204322E-06, 0.2084007) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.7204813, 1.066187) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1468971), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.197441E-06, 0.3650296) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.6197932, 0.9170609) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1263695), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.331456E-06, 0.480926) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.5331947, 0.7888028) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.1087143), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.582926E-06, 0.5666869) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.4587142, 0.6784922) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0935297), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.946068E-06, 0.6301519) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.3946559, 0.5836178) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.08046991), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.391399E-06, 0.6771206) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.3395615, 0.5020194) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.06923762), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.921276E-06, 0.7118835) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.2921766, 0.4318393) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0595771), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.513734E-06, 0.737615) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.2514225, 0.3714797) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0512684), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.163221E-06, 0.7566634) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.2163712, 0.3195664) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.04412237), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.862688E-06, 0.7707661) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.1862247, 0.2749174) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.03797631), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.602478E-06, 0.7812089) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.1602968, 0.2365163) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.03269029), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.379015E-06, 0.7889427) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.1379971, 0.2034888) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.02814396), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.18792E-06, 0.7946714) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.1188178, 0.175083) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.02423381), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.022733E-06, 0.7989158) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.1023224, 0.150652) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.02087083), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.80862E-07, 0.8020613) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.08813525, 0.1296397) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.01797844), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.589597E-07, 0.8043932) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.07593338, 0.1115677) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0154908), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.537832E-07, 0.8061224) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.06543901, 0.09602457) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.01335127), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.63641E-07, 0.8074053) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.05641315, 0.08265641) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.01151113), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.85955E-07, 0.8083575) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.04865037, 0.07115889) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.009928506), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.192195E-07, 0.8090646) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.04197391, 0.06127021) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.008567349), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.617982E-07, 0.80959) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.03623178, 0.05276527) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.007396676), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.124417E-07, 0.8099808) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.03129322, 0.04545041) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.006389831), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.699823E-07, 0.8102716) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.02704583, 0.03915911) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.005523895), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.334384E-07, 0.8104883) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0233929, 0.03374812) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.004779152), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.020291E-07, 0.8106499) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.02025124, 0.02909426) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.004138645), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.750029E-07, 0.8107705) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.01754934, 0.02509158) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.003587792), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.517663E-07, 0.8108608) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.01522568, 0.02164893) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.003114051), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.317795E-07, 0.8109283) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.01322737, 0.01868795) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.002706637), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.145984E-07, 0.8109791) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.01150889, 0.01614122) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.002356275), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 9.982086E-08, 0.8110173) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.01003114, 0.01395076) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.002054987), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 8.711405E-08, 0.8110461) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.008760455, 0.0120667) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001795915), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.618684E-08, 0.8110679) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007667916, 0.01044615) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001573159), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.679592E-08, 0.8110844) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006728643, 0.009052214) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001381649), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.872202E-08, 0.811097) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005921252, 0.007853162) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001217024), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.178306E-08, 0.8111066) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005227356, 0.006821695) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001075536), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.582106E-08, 0.811114) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004631156, 0.005934337) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009539629), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.070063E-08, 0.8111197) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004119067, 0.005170891) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008495366), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.630378E-08, 0.8111242) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003679428, 0.004513982) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007598784), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.253185E-08, 0.8111277) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003302213, 0.003948665) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006829454), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.929792E-08, 0.8111305) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00297882, 0.003462082) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006169838), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.652802E-08, 0.8111327) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002701863, 0.003043171) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000560488), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.415967E-08, 0.8111344) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002465006, 0.002682415) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005121666), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.213766E-08, 0.8111358) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002262817, 0.002371624) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004709127), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.041587E-08, 0.8111369) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002090637, 0.002103754) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000435777), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.895421E-08, 0.8111378) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001944477, 0.001872743) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004059467), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.771862E-08, 0.8111386) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001820918, 0.001673379) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003807253), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.667983E-08, 0.8111392) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001717033, 0.001501177) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003595165), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.58127E-08, 0.8111398) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001630314, 0.001352282) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003418096), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.509563E-08, 0.8111402) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001558613, 0.001223379) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003271669), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.451029E-08, 0.8111407) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001500085, 0.001111624) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003152128), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.404092E-08, 0.811141) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001453148, 0.001014572) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003056248), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.367392E-08, 0.8111413) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00141644, 0.0009301305) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002981256), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.339735E-08, 0.8111416) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001388788, 0.0008565031) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000292476), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.320126E-08, 0.8111418) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001369179, 0.0007921541) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002884693), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.307687E-08, 0.8111421) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001356734, 0.0007357697) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002859265), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.30164E-08, 0.8111423) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001350693, 0.0006862283) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002846919), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.301342E-08, 0.8111425) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001350389, 0.000642572) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.00028463), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.306193E-08, 0.8111427) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001355246, 0.0006039842) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002856223), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.3157E-08, 0.8111429) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001364753, 0.0005697685) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000287565), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.329415E-08, 0.811143) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001378465, 0.0005393313) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002903669), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.346938E-08, 0.8111432) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001395991, 0.0005121662) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002939476), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.367931E-08, 0.8111434) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001416981, 0.0004878413) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0002982362), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.392084E-08, 0.8111435) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001441131, 0.0004659877) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.00030317), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.419115E-08, 0.8111436) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001468168, 0.0004462903) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000308693), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.448797E-08, 0.8111438) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001497847, 0.000428479) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003147557), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.480899E-08, 0.8111439) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001529955, 0.0004123223) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003213138), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.515247E-08, 0.811144) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001564297, 0.0003976213) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003283278), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.551645E-08, 0.8111441) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001600701, 0.0003842046) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003357622), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.589954E-08, 0.8111442) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001639009, 0.0003719244) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003435851), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.630033E-08, 0.8111444) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001679083, 0.0003606528) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003517679), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.671746E-08, 0.8111445) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001720796, 0.0003502789) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003602849), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.71499E-08, 0.8111446) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001764034, 0.0003407062) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003691125), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.759643E-08, 0.8111447) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001808693, 0.0003318506) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003782297), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.805629E-08, 0.8111448) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001854679, 0.0003236387) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003876172), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.852857E-08, 0.8111449) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001901907, 0.000316006) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0003972576), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.901248E-08, 0.8111451) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001950298, 0.0003088959) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004071349), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 1.950731E-08, 0.8111452) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.001999781, 0.0003022585) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004172344), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.00124E-08, 0.8111453) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00205029, 0.0002960498) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000427543), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.052722E-08, 0.8111454) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002101766, 0.0002902308) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004380484), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.105105E-08, 0.8111455) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002154155, 0.0002847669) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004487394), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.158354E-08, 0.8111457) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002207404, 0.0002796271) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004596055), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.212418E-08, 0.8111458) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002261468, 0.000274784) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004706375), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.267253E-08, 0.8111459) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002316303, 0.0002702131) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004818264), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.322831E-08, 0.811146) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002371869, 0.0002658922) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0004931641), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.37908E-08, 0.8111461) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00242813, 0.0002618015) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005046431), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.43599E-08, 0.8111463) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002485052, 0.0002579232) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005162564), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.493551E-08, 0.8111464) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002542601, 0.0002542413) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005279974), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.551699E-08, 0.8111465) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002600749, 0.0002507411) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005398603), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.610406E-08, 0.8111466) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002659468, 0.0002474094) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005518393), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.669681E-08, 0.8111467) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002718731, 0.0002442343) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005639291), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.729477E-08, 0.8111469) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002778516, 0.0002412049) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005761249), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.789739E-08, 0.811147) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.0028388, 0.0002383113) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0005884222), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.850522E-08, 0.8111471) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00289956, 0.0002355444) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006008164), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.911729E-08, 0.8111472) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.002960779, 0.0002328959) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006133038), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 2.973374E-08, 0.8111473) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003022436, 0.0002303582) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006258803), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.035464E-08, 0.8111475) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003084514, 0.0002279245) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006385426), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.097946E-08, 0.8111476) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003146996, 0.0002255881) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.000651287), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.16084E-08, 0.8111477) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003209868, 0.0002233434) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006641107), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.224065E-08, 0.8111478) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003273115, 0.0002211848) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006770107), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.28765E-08, 0.811148) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003336722, 0.0002191074) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0006899839), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.351627E-08, 0.8111482) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003400677, 0.0002171064) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007030278), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.415894E-08, 0.8111483) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003464967, 0.0002151776) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007161399), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.48053E-08, 0.8111485) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00352958, 0.0002133171) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007293177), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.545456E-08, 0.8111487) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003594506, 0.0002115211) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007425591), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.610684E-08, 0.8111489) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003659734, 0.0002097862) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007558619), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.676226E-08, 0.8111491) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003725253, 0.0002081093) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007692242), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.741983E-08, 0.8111492) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003791056, 0.0002064873) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007826439), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.808081E-08, 0.8111494) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003857131, 0.0002049174) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0007961191), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.874399E-08, 0.8111496) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003923472, 0.0002033971) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008096482), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 3.941041E-08, 0.8111498) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.003990068, 0.000201924) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008232295), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.007862E-08, 0.81115) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004056912, 0.0002004957) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008368612), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.074971E-08, 0.8111501) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004123999, 0.0001991102) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008505422), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.142292E-08, 0.8111503) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004191319, 0.0001977655) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008642707), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.209819E-08, 0.8111505) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004258869, 0.0001964597) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008780457), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.277588E-08, 0.8111507) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004326638, 0.000195191) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0008918655), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.345571E-08, 0.8111508) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004394621, 0.0001939578) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009057288), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.413718E-08, 0.811151) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004462813, 0.0001927586) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009196345), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.482203E-08, 0.8111512) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004531207, 0.0001915918) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009335818), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.550752E-08, 0.8111514) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004599802, 0.0001904562) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009475693), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.619537E-08, 0.8111516) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004668587, 0.0001893503) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009615958), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.688509E-08, 0.8111517) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004737559, 0.000188273) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009756604), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.757619E-08, 0.8111519) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004806715, 0.0001872231) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0009897621), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.826996E-08, 0.8111521) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004876046, 0.0001861995) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.0010039), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.896458E-08, 0.8111523) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.004945554, 0.0001852013) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001018073), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 4.966179E-08, 0.8111525) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005015229, 0.0001842272) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001032281), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.036019E-08, 0.8111526) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005085069, 0.0001832766) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001046522), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.105976E-08, 0.8111528) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005155072, 0.0001823483) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001060796), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.176225E-08, 0.811153) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005225229, 0.0001814417) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001075102), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.246446E-08, 0.8111532) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005295542, 0.0001805559) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001089439), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.316955E-08, 0.8111534) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005366005, 0.0001796902) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001103807), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.387609E-08, 0.8111535) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005436614, 0.0001788438) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001118205), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.458318E-08, 0.8111537) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005507368, 0.0001780161) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001132632), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.529209E-08, 0.8111539) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005578259, 0.0001772063) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001147087), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.60024E-08, 0.8111541) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00564929, 0.0001764139) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.00116157), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.671448E-08, 0.8111542) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005720453, 0.0001756383) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001176081), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.742698E-08, 0.8111544) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005791748, 0.0001748788) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001190618), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.814076E-08, 0.8111546) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.005863171, 0.0001741351) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001205181), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.885625E-08, 0.8111548) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00593472, 0.0001734065) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.00121977), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 5.957342E-08, 0.8111551) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006006392, 0.0001726925) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001234384), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.029135E-08, 0.8111553) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006078185, 0.0001719927) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001249023), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.101046E-08, 0.8111556) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006150096, 0.0001713067) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001263685), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.173074E-08, 0.8111558) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006222124, 0.0001706339) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001278372), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.245215E-08, 0.811156) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006294266, 0.0001699741) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001293081), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.317561E-08, 0.8111563) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00636652, 0.0001693267) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001307814), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.389834E-08, 0.8111565) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006438884, 0.0001686915) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001322569), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.462306E-08, 0.8111567) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006511356, 0.000168068) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001337345), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.534971E-08, 0.811157) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00658393, 0.0001674558) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001352143), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.607561E-08, 0.8111572) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006656611, 0.0001668547) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001366962), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.68043E-08, 0.8111575) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.00672939, 0.0001662643) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001381801), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.753218E-08, 0.8111577) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006802268, 0.0001656843) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001396661), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.826195E-08, 0.8111579) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006875245, 0.0001651144) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.00141154), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.899268E-08, 0.8111582) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.006948318, 0.0001645544) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001426439), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 6.972437E-08, 0.8111584) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007021488, 0.000164004) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001441358), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.045605E-08, 0.8111587) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007094746, 0.0001634628) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001456295), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.118957E-08, 0.8111589) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007168098, 0.0001629307) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001471251), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.192487E-08, 0.8111591) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007241537, 0.0001624074) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001486225), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.266016E-08, 0.8111594) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007315067, 0.0001618926) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001501217), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.339725E-08, 0.8111596) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007388685, 0.0001613862) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001516227), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.413337E-08, 0.8111598) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007462387, 0.0001608879) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001531254), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.487125E-08, 0.8111601) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007536175, 0.0001603975) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001546299), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.560991E-08, 0.8111603) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007610042, 0.0001599148) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001561359), t => Invoke((t, t, t) => (Invoke((x, y, z) => new Vector3(x, y, z), 0, 7.634941E-08, 0.8111606) + ((Invoke((x, y, z) => new Vector3(x, y, z), 0, 0.007683991, 0.0001594396) * t) + (0.5 * (Invoke((x, y, z) => new Vector3(x, y, z), 0, -9.809999, 0) * (t * t))))), t, t, t)(-1E-05, 0.001576437)}", + "Label": "Å–", "hasCustomLabel": false, - "LabelId": 282 + "LabelId": 278 } }, "name": null, diff --git a/Assets/Stages/TechDemo A.JSON b/Assets/Stages/TechDemo A.JSON index ef1c90492495e26a16007d86e1852b60a9497cd1..43212e6ea63becea22805a3e66a43b5d73bf0d3c 100644 --- a/Assets/Stages/TechDemo A.JSON +++ b/Assets/Stages/TechDemo A.JSON @@ -1,153 +1 @@ -{ - "category": "Demo Category", - "number": 1, - "description": "Tree Stage", - "scene": "RiverWorld", - "use_install_folder": true, - "solution": { - "ValidationSet": [ - { - "MasterIDs": [ - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1620" - ], - "SolutionIndex": [], - "RelationIndex": [], - "ComparerString": "LineFactHightDirectionComparer" - } - ], - "ExposedSolutionFacts": [], - "WorkflowGadgetDict": { - "-1": null - }, - "MetaInf": { - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1618": { - "workflow_id": 0, - "active": true, - "isImmutable": false - }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1619": { - "workflow_id": 1, - "active": true, - "isImmutable": false - }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1620": { - "workflow_id": 2, - "active": true, - "isImmutable": false - } - }, - "Workflow": [ - { - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1618", - "samestep": false, - "steplink": 3, - "creation": true, - "gadget_rank": -1, - "scroll_label": null, - "GadgetFlow": [], - "GadgetTime": 0.541088400001172 - }, - { - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1619", - "samestep": true, - "steplink": 0, - "creation": true, - "gadget_rank": -1, - "scroll_label": null, - "GadgetFlow": [], - "GadgetTime": 0.541088400001172 - }, - { - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1620", - "samestep": true, - "steplink": 0, - "creation": true, - "gadget_rank": -1, - "scroll_label": null, - "GadgetFlow": [], - "GadgetTime": 0.541088400001172 - } - ], - "marker": 3, - "worksteps": 1, - "backlog": 0, - "soft_resetted": false, - "invoke": true, - "MaxLabelId": 2, - "UnusedLabelIds": [], - "JsonFactSpace": { - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1618": { - "Point": { - "x": 0.0, - "y": 0.0, - "z": 0.0, - "magnitude": 0.0, - "sqrMagnitude": 0.0 - }, - "Normal": { - "x": 0.0, - "y": 1.0, - "z": 0.0, - "magnitude": 1.0, - "sqrMagnitude": 1.0 - }, - "s_type": "PointFact", - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1618", - "Label": "A", - "hasCustomLabel": false, - "LabelId": 1 - }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1619": { - "Point": { - "x": 0.0, - "y": 6.0, - "z": 0.0, - "normalized": { - "x": 0.0, - "y": 1.0, - "z": 0.0, - "magnitude": 1.0, - "sqrMagnitude": 1.0 - }, - "magnitude": 6.0, - "sqrMagnitude": 36.0 - }, - "Normal": { - "x": 0.0, - "y": 1.0, - "z": 0.0, - "magnitude": 1.0, - "sqrMagnitude": 1.0 - }, - "s_type": "PointFact", - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1619", - "Label": "B", - "hasCustomLabel": false, - "LabelId": 2 - }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1620": { - "s_type": "LineFact", - "Pid1": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1618", - "Pid2": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1619", - "Dir": { - "x": 0.0, - "y": -1.0, - "z": 0.0, - "magnitude": 1.0, - "sqrMagnitude": 1.0 - }, - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1620", - "Label": "[AB]", - "hasCustomLabel": false, - "LabelId": 0 - } - }, - "name": null, - "path": null - }, - "solution_approches": [], - "AllowedScrolls": null, - "AllowedGadgets": null, - "name": "TechDemo A", - "path": null -} \ No newline at end of file +{"category":"Demo Category","number":1,"description":"Tree Stage","scene":"RiverWorld","use_install_folder":true,"solution":{"ValidationSet":[{"MasterIDs":["http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact9"],"SolutionIndex":[],"RelationIndex":[],"ComparerString":"LineFactHightDirectionComparer"}],"WorkflowGadgetDict":{"-1":null},"FactDict":{"http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact7":{"s_type":"PointFact","Point":{"x":0.0,"y":0.0,"z":0.0,"magnitude":0.0,"sqrMagnitude":0.0},"Normal":{"x":0.0,"y":1.0,"z":0.0,"magnitude":1.0,"sqrMagnitude":1.0},"Id":"http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact7","Label":"A","hasCustomLabel":false,"LabelId":1},"http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact8":{"s_type":"PointFact","Point":{"x":0.0,"y":6.0,"z":0.0,"normalized":{"x":0.0,"y":1.0,"z":0.0,"magnitude":1.0,"sqrMagnitude":1.0},"magnitude":6.0,"sqrMagnitude":36.0},"Normal":{"x":0.0,"y":1.0,"z":0.0,"magnitude":1.0,"sqrMagnitude":1.0},"Id":"http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact8","Label":"B","hasCustomLabel":false,"LabelId":2},"http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact9":{"s_type":"LineFact","Distance":6.0,"Pid1":"http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact7","Pid2":"http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact8","Dir":{"x":0.0,"y":1.0,"z":0.0,"magnitude":1.0,"sqrMagnitude":1.0},"Id":"http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact9","Label":"[AB]","hasCustomLabel":false,"LabelId":0}},"MetaInf":{"http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact7":{"workflow_id":0,"active":true},"http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact8":{"workflow_id":1,"active":true},"http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact9":{"workflow_id":2,"active":true}},"Workflow":[{"Id":"http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact7","samestep":false,"steplink":3,"creation":true,"gadget_rank":-1,"scroll_label":null,"GadgetFlow":[],"GadgetTime":0.0},{"Id":"http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact8","samestep":true,"steplink":0,"creation":true,"gadget_rank":-1,"scroll_label":null,"GadgetFlow":[],"GadgetTime":0.0},{"Id":"http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact9","samestep":true,"steplink":0,"creation":true,"gadget_rank":-1,"scroll_label":null,"GadgetFlow":[],"GadgetTime":0.0}],"marker":3,"worksteps":1,"backlog":0,"soft_resetted":false,"invoke":true,"MaxLabelId":2,"UnusedLabelIds":[],"name":null,"path":null},"solution_approches":[],"AllowedScrolls":null,"AllowedGadgets":null,"name":"TechDemo A","path":null} \ No newline at end of file diff --git a/Assets/Stages/TechDemo B.JSON b/Assets/Stages/TechDemo B.JSON index e18b1546141b226b2df6914f6f19018003e95cde..8e88e515956aa47bb993ea71bc76e5a6f3e8284a 100644 --- a/Assets/Stages/TechDemo B.JSON +++ b/Assets/Stages/TechDemo B.JSON @@ -1,286 +1 @@ -{ - "category": "Demo Category", - "number": 2, - "description": "River Stage", - "scene": "RiverWorld", - "use_install_folder": true, - "solution": { - "ValidationSet": [ - { - "MasterIDs": [ - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1623" - ], - "SolutionIndex": [], - "RelationIndex": [], - "ComparerString": "LineFactHightDirectionComparer" - }, - { - "MasterIDs": [ - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1623" - ], - "SolutionIndex": [], - "RelationIndex": [], - "ComparerString": "LineSpanningOverRiverWorldComparer" - }, - { - "MasterIDs": [], - "SolutionIndex": [ - 1 - ], - "RelationIndex": [ - 0 - ], - "ComparerString": "LineFactHightComparer" - } - ], - "ExposedSolutionFacts": [], - "WorkflowGadgetDict": { - "-1": null - }, - "MetaInf": { - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1621": { - "workflow_id": 0, - "active": true, - "isImmutable": false - }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1622": { - "workflow_id": 1, - "active": true, - "isImmutable": false - }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1623": { - "workflow_id": 2, - "active": true, - "isImmutable": false - } - }, - "Workflow": [ - { - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1621", - "samestep": false, - "steplink": 3, - "creation": true, - "gadget_rank": -1, - "scroll_label": null, - "GadgetFlow": [], - "GadgetTime": 0.541088400001172 - }, - { - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1622", - "samestep": true, - "steplink": 0, - "creation": true, - "gadget_rank": -1, - "scroll_label": null, - "GadgetFlow": [], - "GadgetTime": 0.541088400001172 - }, - { - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1623", - "samestep": true, - "steplink": 0, - "creation": true, - "gadget_rank": -1, - "scroll_label": null, - "GadgetFlow": [], - "GadgetTime": 0.541088400001172 - } - ], - "marker": 3, - "worksteps": 1, - "backlog": 0, - "soft_resetted": false, - "invoke": true, - "MaxLabelId": 2, - "UnusedLabelIds": [], - "JsonFactSpace": { - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1621": { - "Point": { - "x": 0.0, - "y": 0.0, - "z": 0.0, - "magnitude": 0.0, - "sqrMagnitude": 0.0 - }, - "Normal": { - "x": 0.0, - "y": 1.0, - "z": 0.0, - "magnitude": 1.0, - "sqrMagnitude": 1.0 - }, - "s_type": "PointFact", - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1621", - "Label": "A", - "hasCustomLabel": false, - "LabelId": 1 - }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1622": { - "Point": { - "x": 0.0, - "y": 6.0, - "z": 0.0, - "normalized": { - "x": 0.0, - "y": 1.0, - "z": 0.0, - "magnitude": 1.0, - "sqrMagnitude": 1.0 - }, - "magnitude": 6.0, - "sqrMagnitude": 36.0 - }, - "Normal": { - "x": 0.0, - "y": 1.0, - "z": 0.0, - "magnitude": 1.0, - "sqrMagnitude": 1.0 - }, - "s_type": "PointFact", - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1622", - "Label": "B", - "hasCustomLabel": false, - "LabelId": 2 - }, - "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1623": { - "s_type": "LineFact", - "Pid1": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1621", - "Pid2": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1622", - "Dir": { - "x": 0.0, - "y": -1.0, - "z": 0.0, - "magnitude": 1.0, - "sqrMagnitude": 1.0 - }, - "Id": "http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact1623", - "Label": "[AB]", - "hasCustomLabel": false, - "LabelId": 0 - } - }, - "name": null, - "path": null - }, - "solution_approches": [], - "AllowedScrolls": [ - "OppositeLen" - ], - "AllowedGadgets": [ - { - "s_type": "Pointer", - "Rank": 1, - "UiName": "Pointer", - "MaxRange": "Infinity", - "MaxHeight": "Infinity", - "ButtonIndx": 1, - "MaterialIndx": 0, - "IgnoreLayerMask": { - "value": 269858 - }, - "SecondaryLayerMask": { - "value": 0 - }, - "Workflow": [] - }, - { - "s_type": "Tape", - "Rank": 2, - "UiName": "Tape", - "MaxRange": 2.5, - "MaxHeight": 2.5, - "ButtonIndx": 2, - "MaterialIndx": 0, - "IgnoreLayerMask": { - "value": 391714 - }, - "SecondaryLayerMask": { - "value": 0 - }, - "Workflow": [] - }, - { - "s_type": "AngleTool", - "Rank": 3, - "UiName": "Angle Tool", - "MaxRange": "Infinity", - "MaxHeight": "Infinity", - "ButtonIndx": 3, - "MaterialIndx": 1, - "IgnoreLayerMask": { - "value": 391718 - }, - "SecondaryLayerMask": { - "value": 0 - }, - "Workflow": [] - }, - { - "s_type": "LineTool", - "Rank": 4, - "UiName": "Line Tool", - "MaxRange": "Infinity", - "MaxHeight": "Infinity", - "ButtonIndx": 4, - "MaterialIndx": 0, - "IgnoreLayerMask": { - "value": 391714 - }, - "SecondaryLayerMask": { - "value": 0 - }, - "Workflow": [] - }, - { - "s_type": "LotTool", - "Rank": 5, - "UiName": "Lot Tool", - "MaxRange": "Infinity", - "MaxHeight": "Infinity", - "ButtonIndx": 5, - "MaterialIndx": 0, - "IgnoreLayerMask": { - "value": 365090 - }, - "SecondaryLayerMask": { - "value": 0 - }, - "Workflow": [] - }, - { - "s_type": "Pendulum", - "Rank": 6, - "UiName": "Pendulum", - "MaxRange": "Infinity", - "MaxHeight": "Infinity", - "ButtonIndx": 6, - "MaterialIndx": 0, - "IgnoreLayerMask": { - "value": 391714 - }, - "SecondaryLayerMask": { - "value": 1 - }, - "Workflow": [] - }, - { - "s_type": "Remover", - "Rank": 8, - "UiName": "Delete Fact", - "MaxRange": "Infinity", - "MaxHeight": "Infinity", - "ButtonIndx": 8, - "MaterialIndx": 0, - "IgnoreLayerMask": { - "value": 328243 - }, - "SecondaryLayerMask": { - "value": 0 - }, - "Workflow": [] - } - ], - "name": "TechDemo B", - "path": null -} \ No newline at end of file +{"category":"Demo Category","number":2,"description":"River Stage","scene":"RiverWorld","use_install_folder":true,"solution":{"ValidationSet":[{"MasterIDs":["http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact12"],"SolutionIndex":[],"RelationIndex":[],"ComparerString":"LineFactHightDirectionComparer"},{"MasterIDs":["http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact12"],"SolutionIndex":[],"RelationIndex":[],"ComparerString":"LineSpanningOverRiverWorldComparer"},{"MasterIDs":[],"SolutionIndex":[1],"RelationIndex":[0],"ComparerString":"LineFactHightComparer"}],"WorkflowGadgetDict":{"-1":null},"FactDict":{"http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact10":{"s_type":"PointFact","Point":{"x":0.0,"y":0.0,"z":0.0,"magnitude":0.0,"sqrMagnitude":0.0},"Normal":{"x":0.0,"y":1.0,"z":0.0,"magnitude":1.0,"sqrMagnitude":1.0},"Id":"http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact10","Label":"A","hasCustomLabel":false,"LabelId":1},"http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact11":{"s_type":"PointFact","Point":{"x":0.0,"y":6.0,"z":0.0,"normalized":{"x":0.0,"y":1.0,"z":0.0,"magnitude":1.0,"sqrMagnitude":1.0},"magnitude":6.0,"sqrMagnitude":36.0},"Normal":{"x":0.0,"y":1.0,"z":0.0,"magnitude":1.0,"sqrMagnitude":1.0},"Id":"http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact11","Label":"B","hasCustomLabel":false,"LabelId":2},"http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact12":{"s_type":"LineFact","Distance":6.0,"Pid1":"http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact10","Pid2":"http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact11","Dir":{"x":0.0,"y":1.0,"z":0.0,"magnitude":1.0,"sqrMagnitude":1.0},"Id":"http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact12","Label":"[AB]","hasCustomLabel":false,"LabelId":0}},"MetaInf":{"http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact10":{"workflow_id":0,"active":true},"http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact11":{"workflow_id":1,"active":true},"http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact12":{"workflow_id":2,"active":true}},"Workflow":[{"Id":"http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact10","samestep":false,"steplink":3,"creation":true,"gadget_rank":-1,"scroll_label":null,"GadgetFlow":[],"GadgetTime":0.0},{"Id":"http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact11","samestep":true,"steplink":0,"creation":true,"gadget_rank":-1,"scroll_label":null,"GadgetFlow":[],"GadgetTime":0.0},{"Id":"http://mathhub.info/FrameIT/frameworld?DefaultSituationSpace/SituationTheory1?fact12","samestep":true,"steplink":0,"creation":true,"gadget_rank":-1,"scroll_label":null,"GadgetFlow":[],"GadgetTime":0.0}],"marker":3,"worksteps":1,"backlog":0,"soft_resetted":false,"invoke":true,"MaxLabelId":2,"UnusedLabelIds":[],"name":null,"path":null},"solution_approches":[],"AllowedScrolls":["OppositeLen","AngleSum","Pythagoras","CircleScroll","CircleAreaScroll","ConeVolumeScroll","TruncatedConeVolumeScroll","CylinderVolumeScroll","MidPoint","CircleLineAngleScroll","CircleLineAngleToAngle","SupplementaryAngles"],"AllowedGadgets":[{"s_type":"Pointer","Rank":1,"UiName":"Pointer","MaxRange":"Infinity","MaxHeight":"Infinity","ButtonIndx":1,"MaterialIndx":0,"IgnoreLayerMask":{"value":7682},"SecondaryLayerMask":{"value":0},"Workflow":[]},{"s_type":"Tape","Rank":2,"UiName":"Tape","MaxRange":2.5,"MaxHeight":2.5,"ButtonIndx":2,"MaterialIndx":0,"IgnoreLayerMask":{"value":129538},"SecondaryLayerMask":{"value":0},"Workflow":[]},{"s_type":"AngleTool","Rank":3,"UiName":"Angle Tool","MaxRange":"Infinity","MaxHeight":"Infinity","ButtonIndx":3,"MaterialIndx":1,"IgnoreLayerMask":{"value":129538},"SecondaryLayerMask":{"value":0},"Workflow":[]},{"s_type":"LineTool","Rank":4,"UiName":"Line Tool","MaxRange":"Infinity","MaxHeight":"Infinity","ButtonIndx":4,"MaterialIndx":0,"IgnoreLayerMask":{"value":129538},"SecondaryLayerMask":{"value":0},"Workflow":[]},{"s_type":"LotTool","Rank":5,"UiName":"Lot Tool","MaxRange":"Infinity","MaxHeight":"Infinity","ButtonIndx":5,"MaterialIndx":0,"IgnoreLayerMask":{"value":102914},"SecondaryLayerMask":{"value":0},"Workflow":[]},{"s_type":"Pendulum","Rank":6,"UiName":"Pendulum","MaxRange":"Infinity","MaxHeight":"Infinity","ButtonIndx":6,"MaterialIndx":0,"IgnoreLayerMask":{"value":129538},"SecondaryLayerMask":{"value":1},"Workflow":[]},{"s_type":"Remover","Rank":8,"UiName":"Delete Fact","MaxRange":"Infinity","MaxHeight":"Infinity","ButtonIndx":8,"MaterialIndx":0,"IgnoreLayerMask":{"value":66067},"SecondaryLayerMask":{"value":0},"Workflow":[]},{"s_type":"EqualCircles","Rank":9,"UiName":"Not Defined","MaxRange":"Infinity","MaxHeight":"Infinity","ButtonIndx":9,"MaterialIndx":0,"IgnoreLayerMask":{"value":0},"SecondaryLayerMask":{"value":0},"Workflow":[]}],"name":"TechDemo B","path":null} \ No newline at end of file